27 lines
499 B
Groovy
27 lines
499 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdkVersion 17
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(":base-map")
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7"
|
|
|
|
implementation "com.yandex.android:mapkit"
|
|
|
|
constraints {
|
|
implementation("com.yandex.android:mapkit") {
|
|
version {
|
|
require '3.4.0'
|
|
}
|
|
}
|
|
}
|
|
}
|