That is an iOS setting only. Settings in your “iphone” table are only applied to iOS builds.
There isn’t an equivalent to the UIApplicationExitsOnSuspend setting on Android. But you can mimic that behavior in your code as follows…
local function onSystemEvent(event) if event.type == "applicationSuspend" then native.requestExit() end end Runtime:addEventListener("system", onSystemEvent)
The native.requestExit() function is only supported on Android. It will do nothing on iOS. So, it is safe to leave that line in your code for iOS builds to. Documentation for this function can be found here…
http://docs.coronalabs.com/api/library/native/requestExit.html