chiark / gitweb /
Merge branch 'apk-extension-obb-support' into 'master'
authorDaniel Martí <mvdan@mvdan.cc>
Wed, 13 Jul 2016 11:01:42 +0000 (11:01 +0000)
committerDaniel Martí <mvdan@mvdan.cc>
Wed, 13 Jul 2016 11:01:42 +0000 (11:01 +0000)
commit64d9eb3b13a1be316d3309f2d1fa43be02b1afe3
treed666dcd2066bb047072e095f599bdc2b1f84a19f
parent0c5725b5a909cbae02bcd4a2ef4c3844f7e9b809
parent5f8beaa2c6b1553047d04c34bd9dec5c11715f62
Merge branch 'apk-extension-obb-support' into 'master'

support APK Extension OBB files

Google Play specifies OBB aka "APK Extension" files for apps that need more than 100 MBs, which is the Play APK size limit.  They also provide a mechanism to deliver large data blobs that do not need to be part of the APK.  For example, a game's assets do not need to change often, so they can be shipped as an OBB, then APK updates do not need to include all those assets for each update.

https://developer.android.com/google/play/expansion-files.html

See merge request !143