Android apk extension file - optional

Can I use the main extension file as an additional boot option in the app? So I don't need to download it using the APK file, but later when the user does.

+3


source to share


1 answer


When you create an extension file, it should be something like

[main|patch].<version>.<package_name>

      

main, for the files to be used for the application, so you choose the patch. Version is the same apk version you download the extension file from. If your apk version is 7, you must name the extension file like this:



patch.7.com.yourpackagename

      

Then you will seal it and upload it to google play!

0


source







All Articles