SmartPack / PackageManager

Source code of Package Manager, an Application to Manage your Apps.
https://smartpack.github.io/PackageManager/
GNU General Public License v3.0
448 stars 59 forks source link

Prevent exported apk overwrites #76

Closed balporig closed 2 years ago

balporig commented 2 years ago

If you have multiple apps with the same Package ID/Name and you try to export them the result is a single APK only of the last one as the other one is being overwritten.

For example if you have multiple apps with the name Calculator.

My suggestion is to have an option to append a version the the end of the name like;

Calculator.apk => Calcultor_1.2.1.apk com.calc.apk => com.calc_1.2.1.apk

This will enable also to store multiple versions of the same app useful for archival reasons. Maybe the simplest way to be presented is as a separate settings option to enable storing multiple app versions as the current behavior might still be desired and thus preserved.