Change target API to 29 for GPlay; disable debugging for release build

This commit is contained in:
artdeell 2020-11-30 18:40:07 +03:00
parent 425141aeea
commit cf948a59dd

View File

@ -1,7 +1,7 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 26 compileSdkVersion 29
dexOptions { dexOptions {
javaMaxHeapSize "4g" javaMaxHeapSize "4g"
} }
@ -22,7 +22,7 @@ android {
defaultConfig { defaultConfig {
applicationId "net.kdt.pojavlaunch" applicationId "net.kdt.pojavlaunch"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 26 targetSdkVersion 29
versionCode 156236 versionCode 156236
versionName "3.3.0b_6408b_20201127" versionName "3.3.0b_6408b_20201127"
multiDexEnabled true //important multiDexEnabled true //important
@ -41,7 +41,7 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// defaultConfig already set // defaultConfig already set
// multiDexEnabled = true // multiDexEnabled = true
debuggable = true // debuggable = true
} }
} }