File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed
src/commonMain/kotlin/app/revanced/library Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 3.0.2-dev.1] ( https://github.com/ReVanced/revanced-library/compare/v3.0.1...v3.0.2-dev.1 ) (2024-11-05)
2
+
1
3
## [ 3.0.1] ( https://github.com/ReVanced/revanced-library/compare/v3.0.0...v3.0.1 ) (2024-10-13)
2
4
3
5
Original file line number Diff line number Diff line change 1
- version = 3.0.1
1
+ version = 3.0.2-dev. 1
2
2
# Gradle
3
3
org.gradle.jvmargs = -Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options="-Xmx2048M"
4
4
org.gradle.caching = true
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- android = " 8.5.1 "
2
+ android = " 8.5.2 "
3
3
bcpkix-jdk18on = " 1.77"
4
4
binary-compatibility-validator = " 0.15.1"
5
- core-ktx = " 1.13.1 "
6
- guava = " 33.0.0 -jre"
5
+ core-ktx = " 1.15.0 "
6
+ guava = " 33.2.1 -jre"
7
7
jadb = " 1.2.1"
8
8
kotlin = " 2.0.20"
9
9
kotlinx-coroutines = " 1.8.1"
10
10
kotlinx-serialization = " 1.7.1"
11
11
libsu = " 5.2.2"
12
- revanced-patcher = " 20 .0.0"
12
+ revanced-patcher = " 21 .0.0"
13
13
14
14
[libraries ]
15
15
apkzlib = { module = " com.android.tools.build:apkzlib" , version.ref = " android" }
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ object ApkUtils {
82
82
// Delete resources that were staged for deletion.
83
83
if (resources.deleteResources.isNotEmpty()) {
84
84
targetApkZFile.entries().filter { entry ->
85
- resources.deleteResources.any { shouldDelete -> shouldDelete( entry.centralDirectoryHeader.name) }
85
+ entry.centralDirectoryHeader.name in resources.deleteResources
86
86
}.forEach(StoredEntry ::delete)
87
87
}
88
88
}
You can’t perform that action at this time.
0 commit comments