Skip to content

Commit

Permalink
fix(proguard): Don't optimize anything
Browse files Browse the repository at this point in the history
  • Loading branch information
jmir1 committed Jul 1, 2024
1 parent a8cd723 commit a7644c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
applicationId = "xyz.jmir.tachiyomi.mi"

versionCode = 124
versionName = "0.16.4.1"
versionName = "0.16.4.2"

buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")
Expand Down
3 changes: 2 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-dontobfuscate
-dontoptimize

-keep,allowoptimization class eu.kanade.**
-keep,allowoptimization class tachiyomi.**
Expand All @@ -8,7 +9,7 @@
-keep,allowoptimization class android.content.** { *; }
-keep,allowoptimization class uy.kohesive.injekt.** { public protected *; }
-keep,allowoptimization class android.test.base.** { *; }
-keep class kotlin.** { public protected *; }
-keep,allowoptimization class kotlin.** { public protected *; }
-keep,allowoptimization class kotlinx.coroutines.** { public protected *; }
-keep,allowoptimization class kotlinx.serialization.** { public protected *; }
-keep,allowoptimization class okhttp3.** { public protected *; }
Expand Down

0 comments on commit a7644c2

Please sign in to comment.