Skip to content

Commit

Permalink
fixed R8 error on slf4j
Browse files Browse the repository at this point in the history
  • Loading branch information
XilinJia committed Apr 19, 2024
1 parent 2c28af7 commit 61c61f4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ You can find the license text in the LICENSE file.

## Copyright

New files and modifications in the project is copyrighted in 2024 by Xilin Jia and related contributors.
New files and contents in the project are copyrighted in 2024 by Xilin Jia and related contributors.

Original contents from the forked project maintains copyrights of the AntennaPod team.
Original contents from the forked project maintain copyrights of the AntennaPod team.

## Licenses and permissions

Expand Down
17 changes: 13 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,19 @@ android {

packagingOptions {
resources {
excludes += ["META-INF/LICENSE.txt",
"META-INF/NOTICE.txt",
"META-INF/CHANGES",
"META-INF/README.md"]
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/LICENSE'
exclude 'META-INF/NOTICE'
exclude 'META-INF/CHANGES'
exclude 'META-INF/README.md'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/MANIFEST.MF'

// excludes += ["META-INF/LICENSE.txt",
// "META-INF/NOTICE.txt",
// "META-INF/CHANGES",
// "META-INF/README.md"]
}
}

Expand Down
2 changes: 2 additions & 0 deletions app/proguard.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,5 @@
-dontwarn java.lang.management.ManagementFactory
-dontwarn java.lang.management.ThreadInfo
-dontwarn java.lang.management.ThreadMXBean

-dontwarn org.slf4j.impl.StaticLoggerBinder

0 comments on commit 61c61f4

Please sign in to comment.