awesome-cordova-plugins/.github/CONTRIBUTING.md

20 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2016-02-19 01:55:47 +08:00
# Contributing to Ionic Native
2016-07-14 22:45:55 +08:00
## Have an issue?
2016-06-13 12:29:04 +08:00
#### There are no rules, but here are a few things to consider:
###### Before you submit an issue:
* Do a quick search to see if there are similar issues
* Make sure that you are waiting for `deviceready` to fire before interacting with any plugin. If you are using Ionic, this can be done using [the `Platform.ready()` function](http://ionicframework.com/docs/api/platform/Platform/#ready).
2017-04-09 04:57:38 +08:00
* **Check that you are using the latest version of** `ionic-native`, you can install the latest version by running `npm i --save @ionic-native/core@latest`
2016-06-13 12:29:04 +08:00
###### Still having problems? submit an issue with the following details:
* Short description of the issue
* Steps to reproduce
* Stack trace (if available)
2016-10-14 20:12:35 +08:00
## Feature request?
Have a plugin you'd like to see supported? Since Ionic Native is a thin wrapper around existing Cordova plugins, adding support for new plugins is as easy as creating a new wrapper for whatever plugin you'd like to add.
Take a look at our [Developer Guide](https://github.com/ionic-team/ionic-native/blob/master/DEVELOPER.md) for more info on adding new plugins.