Has anyone been able to create an .obb file and implement the Android downloader?
I have been able to add the libraries needed for the downloader (market_licensing and market_apk_expansion) and succesfully build the apk without errors. However it does not create an expansion file.
The other problem I’m having is enabling the downloader. When building a Corona apk the main script is called within the application tag, like this:
\<application android:name="CoronaApplication" android:label="App label" android:hardwareAccelerated="true" android:debuggable="true" android:icon="@drawable/ic\_launcher"\>
and after that an Activity, like this:
\<activity android:name="com.ansca.corona.CoronaActivity" android:screenOrientation="landscape" android:configChanges="keyboardHidden|orientation|screenSize" android:label="App label" android:launchMode="singleTask" android:theme="@android:style/Theme.NoTitleBar.Fullscreen"\> \<intent-filter\> \<action android:name="android.intent.action.MAIN" /\> \<category android:name="android.intent.category.LAUNCHER" /\> \</intent-filter\> \</activity\>
The downloader however needs to use the main activity thread, but corona also uses this. And as far as i know I can’t modify the com.ansca.corona.CoronaActivity. Or is there a way to start the downloader and after that to call CoronaActivity?
Any help would be appreciated!