31 lines
680 B
Groovy
31 lines
680 B
Groovy
plugins {
|
|
id 'com.android.dynamic-feature'
|
|
}
|
|
android {
|
|
compileSdk 30
|
|
|
|
defaultConfig {
|
|
applicationId "com.example.dynamicfeature"
|
|
minSdk 21
|
|
targetSdk 30
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation project(':app')
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
}
|