feat: store original package name of patches apps.

This commit is contained in:
Aunali321 2022-10-10 18:45:58 +05:30
parent f2b03b6e69
commit 94397dcb4c
5 changed files with 23 additions and 0 deletions

View file

@ -8,6 +8,7 @@ part 'patched_application.g.dart';
class PatchedApplication {
String name;
String packageName;
String originalPackageName;
String version;
final String apkFilePath;
@JsonKey(
@ -25,6 +26,7 @@ class PatchedApplication {
PatchedApplication({
required this.name,
required this.packageName,
required this.originalPackageName,
required this.version,
required this.apkFilePath,
required this.icon,