27 lines
417 B
Groovy
27 lines
417 B
Groovy
plugins {
|
|
id 'com.android.dynamic-feature'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
|
|
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility = '1.8'
|
|
targetCompatibility = '1.8'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':app')
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
}
|