build(Needs bump): Bump dependencies

This commit is contained in:
oSumAtrIX
2024-11-05 19:28:31 +01:00
parent 4fe9304570
commit 84cc315541
2 changed files with 5 additions and 5 deletions

View File

@@ -1,15 +1,15 @@
[versions]
android = "8.5.1"
android = "8.5.2"
bcpkix-jdk18on = "1.77"
binary-compatibility-validator = "0.15.1"
core-ktx = "1.13.1"
guava = "33.0.0-jre"
core-ktx = "1.15.0"
guava = "33.2.1-jre"
jadb = "1.2.1"
kotlin = "2.0.20"
kotlinx-coroutines = "1.8.1"
kotlinx-serialization = "1.7.1"
libsu = "5.2.2"
revanced-patcher = "20.0.0"
revanced-patcher = "21.0.0"
[libraries]
apkzlib = { module = "com.android.tools.build:apkzlib", version.ref = "android" }

View File

@@ -82,7 +82,7 @@ object ApkUtils {
// Delete resources that were staged for deletion.
if (resources.deleteResources.isNotEmpty()) {
targetApkZFile.entries().filter { entry ->
resources.deleteResources.any { shouldDelete -> shouldDelete(entry.centralDirectoryHeader.name) }
entry.centralDirectoryHeader.name in resources.deleteResources
}.forEach(StoredEntry::delete)
}
}