mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-06-12 04:37:37 +02:00
feat: root installation (wip)
This commit is contained in:
@ -1,13 +0,0 @@
|
||||
class ApplicationInfo {
|
||||
final String name;
|
||||
final String packageName;
|
||||
final String version;
|
||||
final String apkFilePath;
|
||||
|
||||
ApplicationInfo({
|
||||
required this.name,
|
||||
required this.packageName,
|
||||
required this.version,
|
||||
required this.apkFilePath,
|
||||
});
|
||||
}
|
21
lib/models/patched_application.dart
Normal file
21
lib/models/patched_application.dart
Normal file
@ -0,0 +1,21 @@
|
||||
import 'package:revanced_manager/models/patch.dart';
|
||||
|
||||
class PatchedApplication {
|
||||
final String name;
|
||||
final String packageName;
|
||||
final String version;
|
||||
final String apkFilePath;
|
||||
final bool isRooted;
|
||||
final bool isFromStorage;
|
||||
final List<Patch> appliedPatches;
|
||||
|
||||
PatchedApplication({
|
||||
required this.name,
|
||||
required this.packageName,
|
||||
required this.version,
|
||||
required this.apkFilePath,
|
||||
required this.isRooted,
|
||||
required this.isFromStorage,
|
||||
this.appliedPatches = const <Patch>[],
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user