Ryan Willoughby created CB-1260: ----------------------------------- Summary: Support exit-on-suspend config.xml preference on Cordova Android Key: CB-1260 URL: https://issues.apache.org/jira/browse/CB-1260 Project: Apache Cordova Issue Type: New Feature Components: Android Reporter: Ryan Willoughby Assignee: Joe Bowser
I'd like to see the exit-on-suspend preference that is currently supported by IOS get supported by Android. Here's how I naively see it happening: Config.xml: {code} <preference name="exit-on-suspend" value="true" /> {code} MainActivity.java: {code} @Override onStop() { super.onStop(); if (config.getPref("exit-on-suspend") == true) { finish() } } {code} I'm assuming it would be a matter of: - adding the above snippet to the main android activity template in PG - possibly adding support for exit-on-suspend to the class that loads the config -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira