Skip to main content
January 6, 2016
Answered

Captivate 9 App Packaging - where is config.xml?

  • January 6, 2016
  • 1 reply
  • 607 views

I last did app packaging in Captivate 7.  In Captivate 9 I don't see where I can edit config.xml.

This topic has been closed for replies.
Correct answer kremisi

Hi there,

go to Adobe Captivate 9 > Templates > Publish > phonegapConfig.xml, I suggest you save the standard version before editing so you'll recover easily in case of issues. If you want to update the phonegap version (today) such as:

<preference name="phonegap-version" value="cli-5.2.0" />

you'll need to update the plugin versions (PhoneGap Build Documentation)

If you want the latest plugin version you can omit the spec tag as follows;

    <plugin name="org.apache.cordova.device"/>

    <plugin name="org.apache.cordova.file"/>

    <plugin name="org.apache.cordova.inappbrowser"/>

    <plugin name="org.apache.cordova.statusbar"/>

Every time you'll publish within AC for devices (app) this config file will be used. K.

1 reply

kremisiCorrect answer
Inspiring
January 26, 2016

Hi there,

go to Adobe Captivate 9 > Templates > Publish > phonegapConfig.xml, I suggest you save the standard version before editing so you'll recover easily in case of issues. If you want to update the phonegap version (today) such as:

<preference name="phonegap-version" value="cli-5.2.0" />

you'll need to update the plugin versions (PhoneGap Build Documentation)

If you want the latest plugin version you can omit the spec tag as follows;

    <plugin name="org.apache.cordova.device"/>

    <plugin name="org.apache.cordova.file"/>

    <plugin name="org.apache.cordova.inappbrowser"/>

    <plugin name="org.apache.cordova.statusbar"/>

Every time you'll publish within AC for devices (app) this config file will be used. K.

January 26, 2016

That's a great help, thank you.