mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Don't crash when installing the last patched APK (#2131)
This commit is contained in:
parent
0499d2b08a
commit
cb722f2634
2 changed files with 52 additions and 49 deletions
|
@ -8,6 +8,7 @@ import 'package:revanced_manager/ui/views/app_selector/app_selector_view.dart';
|
|||
import 'package:revanced_manager/ui/views/contributors/contributors_view.dart';
|
||||
import 'package:revanced_manager/ui/views/home/home_viewmodel.dart';
|
||||
import 'package:revanced_manager/ui/views/installer/installer_view.dart';
|
||||
import 'package:revanced_manager/ui/views/installer/installer_viewmodel.dart';
|
||||
import 'package:revanced_manager/ui/views/navigation/navigation_view.dart';
|
||||
import 'package:revanced_manager/ui/views/navigation/navigation_viewmodel.dart';
|
||||
import 'package:revanced_manager/ui/views/patch_options/patch_options_view.dart';
|
||||
|
@ -37,6 +38,7 @@ import 'package:stacked_services/stacked_services.dart';
|
|||
LazySingleton(classType: HomeViewModel),
|
||||
LazySingleton(classType: PatcherViewModel),
|
||||
LazySingleton(classType: PatchOptionsViewModel),
|
||||
LazySingleton(classType: InstallerViewModel),
|
||||
LazySingleton(classType: NavigationService),
|
||||
LazySingleton(classType: ManagerAPI),
|
||||
LazySingleton(classType: PatcherAPI),
|
||||
|
|
|
@ -27,6 +27,7 @@ class AppInfoViewModel extends BaseViewModel {
|
|||
BuildContext context,
|
||||
PatchedApplication app,
|
||||
) async {
|
||||
locator<PatcherViewModel>().selectedApp = app;
|
||||
locator<InstallerViewModel>().installTypeDialog(context);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue