cordova plugin for hockeyapp (ios & android)
Перейти к файлу
Paul Panserrieu b7f92c8385 fix readme 2015-07-02 12:20:14 +02:00
src update hockeyapp ios sdk to 3.7.1 2015-07-02 11:41:47 +02:00
www Adding versionCheck to Android and iOS 2015-06-05 16:10:53 +01:00
LICENSE init plugin (only iOS is implemented) 2014-03-27 16:54:12 +01:00
README.md fix readme 2015-07-02 12:20:14 +02:00
package.json 1.0.0 2015-07-02 11:56:04 +02:00
plugin.xml [ios] import libstdc++ libc++ 2015-07-02 12:15:55 +02:00

README.md

cordova-plugin-hockeyapp experimental

This plugin exposes the HockeyApp SDK for ios and android

Including:

  • HockeyAppSDK-iOS 3.7.1
  • HockeyAppSDK-Android 3.5.0

Installation

cordova plugin add https://github.com/peutetre/cordova-plugin-hockeyapp.git

Supported Platforms

  • Android
  • iOS

Methods

  • hockeyapp.start(success:function, error:function, appid:string):void

Initialize HockeyApp SDK

  • hockeyapp.feedback(sucess:function, error:function):void

Display tester feedback UI

  • hockeyapp.versionCheck(sucess:function, error:function):void

Check for a new vesion and notify the user if a newer version is available

Android tips

Listen to the backbutton event to fix the backbutton on the feedback UI like:

document.addEventListener("backbutton", function () { }, false);