Skip to content

Commit

Permalink
Disable R8 for release build
Browse files Browse the repository at this point in the history
I have no idea why the HoloDex API calls are failing to be parsed only in the release version??
  • Loading branch information
arkon committed May 27, 2023
1 parent 5b6d9f3 commit 141df24
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ android {
applicationId "com.livetl.android"
minSdkVersion 21
targetSdkVersion 33
versionCode 286
versionName "8.0.3"
versionCode 287
versionName "8.0.4-beta01"
}

buildTypes {
debug {
applicationIdSuffix '.dev'
}
release {
shrinkResources true
minifyEnabled true
shrinkResources false
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
Expand Down

0 comments on commit 141df24

Please sign in to comment.