Software Archive
Read-only legacy content
Announcements
The Intel sign-in experience has changed to support enhanced security controls. If you sign in, click here for more information.
17060 Discussions

seeting the launchMode to singleTask

Mike_C_4
New Contributor I
204 Views
is there any way to set the launch mode to singleTask in the intelxdk.config.additions.xml
 
0 Kudos
3 Replies
Mike_C_4
New Contributor I
204 Views

can't seem to be able to edit post, sorry for the typos

PaulF_IntelCorp
Employee
204 Views

The intelxdk.config.additions.xml file is a place where you can put options that you would find inside the config.xml file in a Cordova CLI project. See this doc for details > https://cordova.apache.org/docs/en/latest/config_ref/ < using something like this in that file:

<platform name="android">
        <preference name="AndroidLaunchMode" value="singleTask" />
</platform>

 

Mike_C_4
New Contributor I
204 Views

Thanks Paul!

Reply