Merge pull request #10004 from TeamNewPipe/fix/apk-jsoup

Remove jsoup files from APK
pull/9748/head
Stypox 2023-04-10 17:22:20 +02:00 zatwierdzone przez GitHub
commit 29318c64ed
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 8 dodań i 0 usunięć

Wyświetl plik

@ -96,6 +96,13 @@ android {
buildFeatures {
viewBinding true
}
packagingOptions {
// remove two files which belong to jsoup
// no idea how they ended up in the META-INF dir...
exclude 'META-INF/README.md'
exclude 'META-INF/CHANGES'
}
}
ext {
@ -313,6 +320,7 @@ static String getGitWorkingBranch() {
}
}
// fix reproducible builds
project.afterEvaluate {
tasks.compileReleaseArtProfile.doLast {
outputs.files.each { file ->