32 lines
683 B
Groovy
32 lines
683 B
Groovy
apply plugin: 'com.android.dynamic-feature'
|
|
|
|
android {
|
|
signingConfigs {
|
|
release {
|
|
keyAlias 'wms key'
|
|
keyPassword 'inpmiy'
|
|
storeFile file('Integry.jks')
|
|
storePassword 'inpmiy'
|
|
}
|
|
}
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
|
|
}
|
|
buildToolsVersion '28.0.3'
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation project(':app')
|
|
}
|