diff --git a/build.gradle.kts b/build.gradle.kts index a4093e4..b63324d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -25,7 +25,7 @@ repositories { dependencies { implementation(kotlin("reflect")) - implementation("app.revanced:revanced-patcher:6.4.3") + implementation("app.revanced:revanced-patcher:7.0.0") implementation("info.picocli:picocli:4.7.0") implementation("com.github.revanced:jadb:master-SNAPSHOT") // updated fork implementation("com.android.tools.build:apksig:7.2.2") diff --git a/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt b/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt index c6e86ce..0778279 100644 --- a/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt +++ b/src/main/kotlin/app/revanced/utils/patcher/Patcher.kt @@ -69,7 +69,7 @@ fun Patcher.applyPatchesVerbose() { } fun Patcher.mergeFiles() { - this.addFiles(args.patchArgs?.patchingArgs!!.mergeFiles) { file -> + this.addIntegrations(args.patchArgs?.patchingArgs!!.mergeFiles) { file -> logger.info("Merging $file") } }