mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-05-11 13:05:37 +02:00
feat: store original package name of patches apps.
This commit is contained in:
parent
f2b03b6e69
commit
94397dcb4c
5 changed files with 23 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue