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