mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-25 20:11:04 +00:00
fix: handle resource patching hardcoded for now
This commit is contained in:
@@ -178,7 +178,7 @@ class PatcherAPI {
|
||||
return false;
|
||||
}
|
||||
|
||||
Future<bool?> createPatcher() async {
|
||||
Future<bool?> createPatcher(bool resourcePatching) async {
|
||||
if (_inputFile != null && _cacheDir != null) {
|
||||
try {
|
||||
return await platform.invokeMethod<bool>(
|
||||
@@ -186,6 +186,7 @@ class PatcherAPI {
|
||||
{
|
||||
'inputFilePath': _inputFile!.path,
|
||||
'cacheDirPath': _cacheDir!.path,
|
||||
'resourcePatching': resourcePatching,
|
||||
},
|
||||
);
|
||||
} on Exception {
|
||||
|
||||
Reference in New Issue
Block a user