for cordova version > 5.x.x:
cordova plugin add cordova-plugin-mixpanel
older versions:
cordova plugin add https://github.com/samzilverberg/cordova-mixpanel-plugin.git
window.mixpanel:
- alias(aliasId, originalId, onSuccess, onFail)
- also available as
createAlias
- also available as
- distinctId(function onSuccess(distinctId), onFail)
- flush(onSuccess, onFail)
- identify(distinctId, onSuccess, onFail)
- init(token, onSuccess, onFail)
- registerSuperProperties(superProperties, onSuccess, onFail)
- reset(onSuccess, onFail)
- track(eventName, eventProperties, onSuccess, onFail)
- showSurvey(onSuccess, onFail) currently only iOS
- by default the SDK attempts to show any available survey at app launch. If you'd like to trigger a survey after a particular action though use this.
window.mixpanel.people:
- identify(distinctId, onSuccess, onFail)
- increment(peopleProperties, onSuccess, onFail)
- setPushId(pushId, onSuccess, onFail)
- More info about push notifications at:
- Usage example using the PhoneGap Push Plugin:
var push = PushNotification.init({ 'android': {'senderID': '<GCM Sender ID>'}, 'ios': {'alert': 'true', 'badge': 'true', 'sound': 'true'} }); push.on('registration', function(data) { mixpanel.people.setPushId(data.registrationId, function onSuccess(){}, function onFail(){}); });
- set(peopleProperties, onSuccess, onFail)
- setOnce(peopleProperties, onSuccess, onFail)
- add more Mixpanel People operations
- unset, delete (more?)
- make sure ios/android use same error messages
- refactor ios code
- remove code duplication of checking that mixpanel was init
contributions of all sorts to the source code are more than welcome. any contribution will be noted in the changeslog (for FAME! :-D ).
Please try to test your contributions using your cordova project or a dummy test project. You may use mine which i've published to NPM: https://www.npmjs.com/package/cordova-mixpanel-plugin-testapp
open your xcode proj, goto build phases -> link binary with libraries:
- drag all files under folder 'frameworks' (on the left) to here
- add the following if missing:
- libicucore
- cfnetwork
appears to be some problem of the xcode proj settings. only working solution i found so far is to
cordova platform remove ios
cordova platform add ios
cordova build ios
and setting up the build phase correctly again, as described in last question.
google for NSAppTransportSecurity. since iOS9 they are more strict about what your app is allowed to connect to. you will have to manually add some entries to your app plist file to allow network connectivity to mixpanel server.
mixpanel, plugin cordova, phonegap, ionic, android, ios