This plugin supports PhoneGap/Cordova apps running on both iOS and Android.
SDK documentation and integration guides for IOS and Android:
http://support.hockeyapp.net/kb/client-integration-ios-mac-os-x/hockeyapp-for-ios
http://support.hockeyapp.net/kb/client-integration-android-other-platforms/hockeyapp-for-android-sdk
-
Make sure you update your projects to Cordova iOS version 3.5.0+ before installing this plugin.
cordova platform update ios cordova platform update android -
Install this plugin using PhoneGap/Cordova cli:
cordova plugin add https://github.com/ethoninformatics/cordova-plugin-hockeyapp.git -
Call configure with your hockey app id
function onDeviceReady(){
window.hockeyApp.configure({
appId: process.env.HOCKEY_APP_ID
});
}
window.document.addEventListener("deviceready", onDeviceReady, false);