refactor: change package name.

This commit is contained in:
Aunali321
2022-09-12 18:23:34 +05:30
parent fe13234faa
commit 1c75c81b90
15 changed files with 32 additions and 30 deletions

View File

@ -34,7 +34,8 @@ class HomeViewModel extends BaseViewModel {
const InitializationSettings(
android: AndroidInitializationSettings('ic_notification'),
),
onSelectNotification: (p) => DeviceApps.openApp('app.revanced.manager'),
onSelectNotification: (p) =>
DeviceApps.openApp('app.revanced.manager.flutter'),
);
_getPatchedApps();
_managerAPI.reAssessSavedApps().then((_) => _getPatchedApps());

View File

@ -17,7 +17,7 @@ class InstallerViewModel extends BaseViewModel {
final PatchedApplication _app = locator<PatcherViewModel>().selectedApp!;
final List<Patch> _patches = locator<PatcherViewModel>().selectedPatches;
static const _installerChannel = MethodChannel(
'app.revanced.manager/installer',
'app.revanced.manager.flutter/installer',
);
final ScrollController scrollController = ScrollController();
double? progress = 0.0;