summaryrefslogtreecommitdiff
path: root/src/android
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-05-15 17:37:09 -0400
committerGravatar bunnei2023-06-03 00:06:02 -0700
commit0f06e73a7cef8dec9412fa309eeabfe46d5ec330 (patch)
tree9c183a8e1f1553c339a00e24525f31beb13758d1 /src/android
parentandroid: Fix background color within inset areas (diff)
downloadyuzu-0f06e73a7cef8dec9412fa309eeabfe46d5ec330.tar.gz
yuzu-0f06e73a7cef8dec9412fa309eeabfe46d5ec330.tar.xz
yuzu-0f06e73a7cef8dec9412fa309eeabfe46d5ec330.zip
android: Use proguard file in relWithDebInfo
Diffstat (limited to 'src/android')
-rw-r--r--src/android/app/build.gradle.kts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts
index f0a4dbd5a..f37d6b9f7 100644
--- a/src/android/app/build.gradle.kts
+++ b/src/android/app/build.gradle.kts
@@ -104,6 +104,10 @@ android {
104 signingConfig = signingConfigs.getByName("debug") 104 signingConfig = signingConfigs.getByName("debug")
105 isMinifyEnabled = true 105 isMinifyEnabled = true
106 isDebuggable = true 106 isDebuggable = true
107 proguardFiles(
108 getDefaultProguardFile("proguard-android.txt"),
109 "proguard-rules.pro"
110 )
107 versionNameSuffix = "-debug" 111 versionNameSuffix = "-debug"
108 enableAndroidTestCoverage = false 112 enableAndroidTestCoverage = false
109 isJniDebuggable = true 113 isJniDebuggable = true