26 lines
551 B
Groovy
26 lines
551 B
Groovy
apply plugin: 'com.android.dynamic-feature'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
minSdkVersion 23
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':app')
|
|
|
|
// At a Glance
|
|
implementation 'com.google.android.gms:play-services-awareness:18.0.0'
|
|
}
|