29 lines
485 B
Groovy
29 lines
485 B
Groovy
apply plugin: 'com.android.dynamic-feature'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = 1.8
|
|
targetCompatibility = 1.8
|
|
}
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':app')
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
}
|