Ionic-HockeyApp
Need HockeyApp in your Ionic application, add this package! This is an Ionic wrapper of the cordova-plugin-hockeyapp to make it easier to add HockeyApp into your Ionic application.
Supported Ionic Platforms
Ionic 2 & 3 are fully supported, the latest version of Ionic that was tested is v3.6.1.
Getting Started
Start by creating a HockeyApp account and register your app with the service.
HockeyApp plugin by running this command:
Install the officialionic cordova plugin add cordova-plugin-hockeyapp@latest
Install ionic-hockeyapp
npm install ionic-hockeyapp --save
app.module.ts
Add the HockeyApp provider to; providers:
How to use
After following the Getting Started guide. Import HockeyApp provider into your class and call HockeyApp. Start the HockeyApp Service in app.component.ts
;; constructor..., app:App, hockeyapp:HockeyApp
After starting HockeyApp, import into pages, providers, and components and you are good to go.
; constructor..., private hockeyApp:HockeyApp
Example
Check out the example Ionic application in the example folder.
Android Screenshot | iOS Screenshot |
---|---|
![]() |
![]() |
API Reference
Read the Cordova HockeyApp API Reference for official documentation.
Contributing
If you want to make an improvement, please feel free to fork this repo and submit a pull request.
Possible enhancements:
- Update HockeyApp start command to add Login Mode.
- Add Unit Tests
Make library promise based. Added in v0.1.6
License
MIT License
Copyright (c) 2017 Boston University - Software and Application Innovation Lab
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.