mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-13 02:14:31 +01:00
feat: append patch version to the APK name while sharing/exporting (#1547)
This commit is contained in:
parent
eb6e75b156
commit
7df1ae7ed8
1 changed files with 3 additions and 2 deletions
|
@ -269,8 +269,9 @@ void sharePatchedFile(String appName, String version) {
|
|||
}
|
||||
|
||||
String _getFileName(String appName, String version) {
|
||||
final String patchVersion = _managerAPI.patchesVersion!;
|
||||
final String prefix = appName.toLowerCase().replaceAll(' ', '-');
|
||||
final String newName = '$prefix-revanced_v$version.apk';
|
||||
final String newName = '$prefix-revanced_v$version-patches_$patchVersion.apk';
|
||||
return newName;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue