c# - Reading APK Expansion Files with MonoDroid -
i working on porting xna windows phone 7 game android using monogame , monodroid. ported game, added in multiple resolution support , ended apk 130 mb. discovered google play not support apk files larger 50 mb, , have use apk expansion files.
so read through google documentation expansion files. zipped game's textures without compression setting, renamed zip file to:
main.1.com.baller.fivesome.obb
i placed obb file appropriate place: http://www.ballerindustries.com/images/path.png
my code crashing while trying open obb file:
using(zipfile zif = new zipfile(sourcepath))
here's contents of sourcepath: http://www.ballerindustries.com/images/sourcepath.png
it results in java.io.filenotfoundexception
so guess questions are: 1. missing obvious? 2. have placed obb right location? 3. have built obb correctly? 4. need set special permissions?
thanks, angus
Comments
Post a Comment