Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
Issue #417: Phonegap Build Issues for 1.4.X
Browse files Browse the repository at this point in the history
  • Loading branch information
macdonst committed Dec 14, 2015
1 parent 2301364 commit 1daa9ad
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions docs/PHONEGAP_BUILD.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@
Including this plugin in a project that is built by PhoneGap Build is as easy as adding:

```xml
<gap:plugin name="phonegap-plugin-push" source="npm" />
<preference name="android-build-tool" value="gradle" />
<plugin name=""phonegap-plugin-push" source="npm" />
```
into your app's `config.xml` file. PhoneGap Build will pick up the latest version of phonegap-plugin-push published on npm. If you want to specify a particular version of the plugin you can add the `version` attribute to the `gap` tag.
into your app's `config.xml` file. PhoneGap Build will pick up the latest version of phonegap-plugin-push published on npm. If you want to specify a particular version of the plugin you can add the `spec` attribute to the `plugin` tag.
```xml
<gap:plugin name="phonegap-plugin-push" source="npm" version="1.2.3" />
<preference name="android-build-tool" value="gradle" />
<plugin name="phonegap-plugin-push" spec="~1.4.5" source="npm" />
```
Note: version 1.3.0 of this plugin begins to use Gradle to install the Android Support Framework. Support for Gradle has recently been added to PhoneGap Build. Please read [this blog post](http://phonegap.com/blog/2015/09/28/android-using-gradle/) for more information.

0 comments on commit 1daa9ad

Please sign in to comment.