mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-11 21:15:37 +02:00
feat: Add install error dialogs to prevent faulty installations
This commit is contained in:
parent
6c2ceed91f
commit
2f14746124
5 changed files with 65 additions and 23 deletions
|
@ -17,6 +17,7 @@ class PatchedApplication {
|
|||
Uint8List icon;
|
||||
DateTime patchDate;
|
||||
bool isRooted;
|
||||
bool isFromStorage;
|
||||
bool hasUpdates;
|
||||
List<String> appliedPatches;
|
||||
List<String> changelog;
|
||||
|
@ -29,6 +30,7 @@ class PatchedApplication {
|
|||
required this.icon,
|
||||
required this.patchDate,
|
||||
this.isRooted = false,
|
||||
this.isFromStorage = false,
|
||||
this.hasUpdates = false,
|
||||
this.appliedPatches = const [],
|
||||
this.changelog = const [],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue