Android Apk Expansion File - Optional
Can I use main expansion file as optional download option in application? So I don't need download it with APK file but later when user would do it.
Solution 1:
When you create an expansion file, it should be something like
[main|patch].<version>.<package_name>
main, is for files that you're app needs to run, so you choose patch. The version is the same apk version you are uploading the expansion file with. If your apk version is 7 you should name the expansion file as follow:
patch.7.com.yourpackagename
You then zip it, and upload to google play!
Baca Juga
- Is There A Way To Manually Create The Package Folder For An Apk's .obb File?
- Why Does My "content://" Uri Return A Null Inputstream, Even Though I Can Read From The Zipresourcefile Object?
- How To Draw Brushes Or Shape Using Path When Moving Finger Fast In Andorid Canvas (generate Missing Point When User Move Finger Fast)
Post a Comment for "Android Apk Expansion File - Optional"