feat: root installation (wip)

This commit is contained in:
Alberto Ponces 2022-08-14 19:40:34 +01:00
parent 6061d900ed
commit 9ce0f81a89
16 changed files with 231 additions and 69 deletions

View 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>[],
});
}