Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • iOS: Appoxee plugin support iOS7 iOS8 and above

Prerequisites

  • Node and PhoneGap CLI installed on your mac.
  • Cordova 5.0.0 and above
  • Appoxee Cordova plugin 1.5.0.

Integration - Phase 1

  • Download the plugin
  • Add the plugin with the following command:

Versions under 1.5.0 (not including).

Code Block
languagebash
titleCordova CLI
cd Path/To/My/PhonegapProject
cordova plugin add /path/to/location/of/plugin

...


Code Block
languagebash
titleCordova CLI
cd Path/To/My/PhonegapProject
cordova plugin add /path/to/location/of/plugin

...

iOS  - No need to explicitly engage the plugin via your JavaScript code.

  • iOS 1.3.1 and above

Add to your application plist file the "appoxee_sdk_key" with a string value of your application SDK key.

No need to explicitly call the AppoxeePlugin.engage() method.

Code Block
languagexml
titleapplication.plist
<key>appoxee_sdk_key</key>
<string>the_sdk_key</string>
  • iOS 1.5.0 and above

Locate AppoxeeConfig.plist on the Cordova Xcode project file structure (File should be located under 'Resources' folder on 'Xcode's project navigator).

Code Block
languagebash
titleAppoxeeConfig.plist location
~/CORDOVA_PROJECT_NAME/APPLICATION_NAME/platforms/ios/XCODE_APP_NAME/Resources/AppoxeeConfig.plist

...