summaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2024-10-27 22:05:20 +0500
committerilotterytea <iltsu@alright.party>2024-10-27 22:05:20 +0500
commit7d6fc9995477637bbda63928d416c3048e732f15 (patch)
tree604aa0d834c754571da75d8c3db4a50790642fb5 /android
parent25b173f9d825110257e2fc759bcac0160d66b653 (diff)
fix: turned off the fucking ProGuard
Diffstat (limited to 'android')
-rw-r--r--android/build.gradle4
1 files changed, 3 insertions, 1 deletions
diff --git a/android/build.gradle b/android/build.gradle
index 4c02a06..ad49740 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -16,6 +16,7 @@ android {
}
packagingOptions {
exclude 'META-INF/robovm/ios/robovm.xml'
+ exclude 'META-INF/INDEX.LIST'
}
defaultConfig {
applicationId "kz.ilotterytea.maxon"
@@ -26,7 +27,8 @@ android {
}
buildTypes {
release {
- minifyEnabled true
+ minifyEnabled false
+ shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}