Github user mmocny commented on a diff in the pull request:
https://github.com/apache/cordova-cli/pull/164#discussion_r11925400
--- Diff: src/metadata/android_parser.js ---
@@ -97,6 +108,29 @@ module.exports.prototype = {
}
}
+ // Set launchMode in AndroidManifest
+ var launchModePref = this.findLaunchModePreference(config);
+ if (launchModePref) {
+ var act = manifest.getroot().find('./application/activity');
+ switch (launchModePref) {
+ case 'standard':
+ act.attrib["android:launchMode"] = 'standard';
+ break;
+ case 'singleTop':
+ act.attrib["android:launchMode"] = 'singleTop';
+ break;
+ case 'singleTask':
+ act.attrib["android:launchMode"] = 'singleTask';
+ break;
+ case 'singleInstance':
+ act.attrib["android:launchMode"] = 'singleInstance';
+ break;
+ case 'default':
+ delete act.attrib["android:launchMode"];
--- End diff --
I think the way it is is fine: if you explicitly set an invalid value for
the preference in your application config, you get the default *android*
application launchMode. If you don't set any preference, you get the default
*cordova* application launchMode. That makes sense to me!
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---