29 lines
649 B
Groovy
29 lines
649 B
Groovy
plugins {
|
|
id 'com.android.dynamic-feature'
|
|
}
|
|
android {
|
|
compileSdkVersion 30
|
|
|
|
defaultConfig {
|
|
applicationId "it.integry.wms.dynamic_customization"
|
|
minSdkVersion 21
|
|
targetSdkVersion 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 project(":app")
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.2.0'
|
|
} |