28 lines
530 B
Groovy
28 lines
530 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion versions.compileSdk
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
api project(":lifecycle")
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7"
|
|
|
|
implementation "com.google.android.gms:play-services-location"
|
|
|
|
constraints {
|
|
implementation("com.google.android.gms:play-services-location") {
|
|
version {
|
|
require '1.0.0'
|
|
}
|
|
}
|
|
}
|
|
}
|