Skip to content

Commit

Permalink
fix(proguard): Use a newer proguard release
Browse files Browse the repository at this point in the history
  • Loading branch information
jmir1 committed Jul 1, 2024
1 parent a7644c2 commit 5045fa1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 0 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
-dontobfuscate
-dontoptimize

-keep,allowoptimization class eu.kanade.**
-keep,allowoptimization class tachiyomi.**
Expand Down
10 changes: 10 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ pluginManagement {
mavenCentral()
maven(url = "https://www.jitpack.io")
}
// https://issuetracker.google.com/344363457
// TODO: Remove when AGP's bundled R8 is updated
buildscript {
repositories {
maven("https://storage.googleapis.com/r8-releases/raw")
}
dependencies {
classpath("com.android.tools:r8:8.5.31")
}
}
}

dependencyResolutionManagement {
Expand Down

0 comments on commit 5045fa1

Please sign in to comment.