Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 560 Bytes

crossplatform-phonegap-en.md

File metadata and controls

19 lines (14 loc) · 560 Bytes
  1. To download the iOS dependency, it is necessary to have cocoapods installed. To install it, follow this guide

  2. Add the plugin to the project with the following command

phonegap plugin add cordova-plugin-emma-sdk --save
  1. In www/js/index.js add the following code
$(document).on("deviceready", function() {
  var config = {
    sessionKey: "%%%SESSION_KEY%%%"
  };

  window.plugins.EMMA.startSession(config);
});