Josh, here’s the full story with the manifest files…
The existing build on the Amazon store was with Corona Build #319, so that I could also support ARM6. I modified the manifest file as follows:
<?xml version="1.0" encoding="UTF-8"?>
<manifest package="com.base2.walkaboutb" android:versioncode="260" android:versionname="2.6.0" android:installlocation="auto"> xmlns:android="http://schemas.android.com/apk/res/android"><br> <application android:theme="@android:style/Theme.NoTitleBar" android:label="@string/app_name" android:icon="@drawable/icon"><br> <activity android:label="@string/app_name" android:name=".MyCoronaActivity" android:launchmode="singleInstance" android:screenorientation="landscape"><br> <intent-filter><br> <action android:name="android.intent.action.MAIN"></action><br> <category android:name="android.intent.category.LAUNCHER"></category><br> </intent-filter><br> </activity><br> </application><br> <uses-sdk android:minsdkversion="6"></uses-sdk><br> <uses-sdk android:targetsdkversion="11"></uses-sdk><br> <supports-screens android:anydensity="true" android:smallscreens="true" android:normalscreens="true" android:largescreens="true" android:xlargescreens="true"></supports-screens><br></manifest>
I received an email from amazon stating the following error with the Kindle fire:
“Use of the Settings Soft Keys (Top menu bar such as volume, device options, etc) causes the app to exit.”
I assumed this was due to some quirk with the old corona since there was zero handling of hardware keys. So I decided to just drop ARM6 and move to the latest build. I re-built using build #645 and used the following manifest file:
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.base2.walkaboutb" android:versioncode="8261" android:versionname="2.6.1" android:installlocation="auto"> xmlns:android="http://schemas.android.com/apk/res/android"><br> <application android:label="Walkabout" android:icon="@drawable/icon" android:debuggable="true"><br> <activity android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:label="Walkabout" android:name="com.ansca.corona.CoronaActivity" android:launchmode="singleTask" android:screenorientation="landscape" android:configchanges="keyboardHidden|orientation"><br> <intent-filter><br> <action android:name="android.intent.action.MAIN"></action><br> <category android:name="android.intent.category.LAUNCHER"></category><br> </intent-filter><br> </activity><br> <activity android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:name="com.ansca.corona.CameraActivity" android:screenorientation="portrait" android:configchanges="keyboardHidden|orientation"></activity><br> <activity android:theme="@android:style/Theme.NoTitleBar.Fullscreen" android:name="com.ansca.corona.VideoActivity" android:screenorientation="landscape" android:configchanges="keyboardHidden|orientation"></activity><br> <provider android:name="com.ansca.corona.FileContentProvider" android:authorities="com.base2.walkaboutb.files"></provider><br> </application><br> <uses-sdk android:minsdkversion="8"></uses-sdk><br> <uses-sdk android:targetsdkversion="11"></uses-sdk><br> <supports-screens android:anydensity="true" android:smallscreens="true" android:normalscreens="true" android:largescreens="true" android:xlargescreens="true"></supports-screens><br></manifest>
I added a note under ‘Testing Instructions’:
"Please test specifically on Kindle Fire. This is a build in response to issues described in your test report: “Use of the Settings Soft Keys (Top menu bar such as volume, device options, etc) causes the app to exit.”
And the app was approved a few days later. [import]uid: 8872 topic_id: 13204 reply_id: 64796[/import]