This repository was archived by the owner on Apr 15, 2024. It is now read-only.
File tree 2 files changed +3
-3
lines changed
src/main/kotlin/app/revanced
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ internal object MainCommand : Runnable {
47
47
@Option(names = [" -r" , " --resource-patcher" ], description = [" Disable patching resources" ])
48
48
var disableResourcePatching: Boolean = false
49
49
50
- @Option(names = [" --debugging " ], description = [" Disable patch version compatibility" ])
51
- var debugging : Boolean = false
50
+ @Option(names = [" -e " , " --experimental " ], description = [" Disable patch version compatibility patch " ])
51
+ var experimental : Boolean = false
52
52
53
53
@Option(names = [" -m" , " --merge" ], description = [" One or more dex file containers to merge" ])
54
54
var mergeFiles = listOf<File >()
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ fun Patcher.addPatchesFiltered(
43
43
return @patch
44
44
}
45
45
46
- if (! (args.debugging || compatiblePackages.any { it.versions.isEmpty() || it.versions.any { version -> version == packageVersion }})) {
46
+ if (! (args.experimental || compatiblePackages.any { it.versions.isEmpty() || it.versions.any { version -> version == packageVersion }})) {
47
47
println (" $prefix : The package version is $packageVersion and is incompatible." )
48
48
return @patch
49
49
}
You can’t perform that action at this time.
0 commit comments