Skip to content

Commit

Permalink
Changed: Disable shrinkResources and obfuscation for testing reproduc…
Browse files Browse the repository at this point in the history
…ible builds and maintaining stacktraces of crashes
  • Loading branch information
agnostic-apollo committed Sep 6, 2021
1 parent 534a098 commit c04d126
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 17 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
shrinkResources false // Reproducible builds
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}

Expand Down
17 changes: 1 addition & 16 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,4 @@
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
-dontobfuscate

0 comments on commit c04d126

Please sign in to comment.