Skip to content

Commit 5045fa1

Browse files
committed
fix(proguard): Use a newer proguard release
1 parent a7644c2 commit 5045fa1

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

app/proguard-rules.pro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
-dontobfuscate
2-
-dontoptimize
32

43
-keep,allowoptimization class eu.kanade.**
54
-keep,allowoptimization class tachiyomi.**

settings.gradle.kts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ pluginManagement {
1313
mavenCentral()
1414
maven(url = "https://www.jitpack.io")
1515
}
16+
// https://issuetracker.google.com/344363457
17+
// TODO: Remove when AGP's bundled R8 is updated
18+
buildscript {
19+
repositories {
20+
maven("https://storage.googleapis.com/r8-releases/raw")
21+
}
22+
dependencies {
23+
classpath("com.android.tools:r8:8.5.31")
24+
}
25+
}
1626
}
1727

1828
dependencyResolutionManagement {

0 commit comments

Comments
 (0)