Disable minify, remove proguard/R8 stuff

This commit is contained in:
Philipp Heckel 2025-09-17 16:27:34 -04:00
parent ef6a456aaf
commit 5917c96dbf
3 changed files with 5 additions and 16 deletions

View file

@ -18,8 +18,8 @@ android {
minSdkVersion 21
targetSdkVersion 35
versionCode 36
versionName "1.17.3"
versionCode 37
versionName "1.17.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@ -35,12 +35,13 @@ android {
buildTypes {
release {
minifyEnabled true
minifyEnabled false
shrinkResources false
debuggable false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
minifyEnabled false
shrinkResources false
debuggable true
applicationIdSuffix ".debug"
versionNameSuffix "-debug"

View file

@ -1,12 +0,0 @@
# Keep readable stack traces
-dontobfuscate
-keepattributes SourceFile,LineNumberTable
# (From your case) ignore optional TLS providers pulled by OkHttp
-dontwarn org.conscrypt.**
-dontwarn org.bouncycastle.**
-dontwarn org.openjsse.**
# If you use Markwon GIF/SVG decoders:
-keep class pl.droidsonroids.gif.** { *; }
-keep class com.caverock.androidsvg.** { *; }