Skip to content

Commit

Permalink
[build] Exclude net.sf.kxml:kxml2
Browse files Browse the repository at this point in the history
  • Loading branch information
SkyD666 committed May 27, 2024
1 parent 9094194 commit aba788f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,9 @@ dependencies {
implementation("io.coil-kt:coil-compose:2.6.0")
implementation("io.coil-kt:coil-gif:2.6.0")
implementation("com.rometools:rome:2.1.0")
implementation("be.ceau:opml-parser:3.1.0")
implementation("be.ceau:opml-parser:3.1.0") {
exclude(group = "net.sf.kxml", module = "kxml2")
}
implementation("net.dankito.readability4j:readability4j:1.0.8")

implementation("org.libtorrent4j:libtorrent4j-android-arm64:2.1.0-31")
Expand Down
6 changes: 5 additions & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,8 @@ public static final ** CREATOR;
-dontwarn com.arthenica.smartexception.java.Exceptions

# MPV
-keep,allowoptimization class is.xyz.mpv.MPVLib { public protected *; }
-keep,allowoptimization class is.xyz.mpv.MPVLib { public protected *; }

-dontwarn org.xmlpull.v1.**
-keep class org.xmlpull.** { *; }
-keepclassmembers class org.xmlpull.** { *; }

0 comments on commit aba788f

Please sign in to comment.