I submitted my first App to Amazon and got this back from them:
“Device:Motorola Droid 2.3.4 The app is unable to handle the incoming call interrupt gracefully; app crashes on receiving a call interrupt. Please follow the steps to reproduce: 1. Launch the Application 2. Tap on the Start button. 3. Tap on Tap to Continue. 4. Make call interrupt. 5. Observe that application exits after call interrupt.”
Two questions:
-
How do I fix this problem? I would love to make it available for all devices. I do not have any android phones for testing.
-
If I can’t fix the problem programmatically, will changing the form factor to “Tablet” from “Phone + Tablet” in the metadata at least allow the App onto the Kindle?
I don’t know if it’s relevant, but I have an onSuspendResume event with the following code. It doesn’t actually serve any purpose any more that I can remember, but I’m hesitant to make any changes unless necessary.
[code]
local function onSuspendResume(event)
if “applicationSuspend” == event.type then
tSuspend = system.getTimer()
elseif “applicationResume” == event.type then
tPrevious = tPrevious + (system.getTimer() - tSuspend)
end
end
Runtime:addEventListener(“system”, onSuspendResume)
[/code] [import]uid: 99903 topic_id: 22179 reply_id: 322179[/import]
[import]uid: 12482 topic_id: 22179 reply_id: 88566[/import]