SDL: generate .aab file with the debug symbols, but strip .apk file

This commit is contained in:
Sergii Pylypenko
2021-12-11 00:44:00 +02:00
parent dd1d2c1be6
commit b63e1c0ed8
2 changed files with 8 additions and 4 deletions

View File

@@ -14,7 +14,11 @@ android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), '../proguard-local.cfg', '../proguard.cfg'
}
releaseWithDebugInfo {
initWith release
ndk {
debugSymbolLevel 'FULL'
}