48 lines
1.1 KiB
Groovy
48 lines
1.1 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
id 'com.google.gms.google-services'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
buildToolsVersion "30.0.3"
|
|
|
|
defaultConfig {
|
|
applicationId "com.web.dmcslot"
|
|
minSdkVersion 24
|
|
targetSdkVersion 31
|
|
versionCode 100
|
|
versionName "v1.0.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('dmcslot.jks')
|
|
storePassword "android2025"
|
|
keyAlias 'key0'
|
|
keyPassword "android2025"
|
|
}
|
|
release {
|
|
storeFile file('dmcslot.jks')
|
|
storePassword "android2025"
|
|
keyAlias 'key0'
|
|
keyPassword "android2025"
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(path: ':base')
|
|
} |