22 lines
332 B
Groovy
22 lines
332 B
Groovy
apply plugin: 'com.android.dynamic-feature'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion 23
|
|
targetSdkVersion 29
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':app')
|
|
}
|