Skip to content

Commit

Permalink
- changed cordova version to 3.0.0
Browse files Browse the repository at this point in the history
- fixed location of Beacon service in plugin.xml
  • Loading branch information
arumsey committed Sep 22, 2014
1 parent 9a01db1 commit 8027927
Showing 1 changed file with 38 additions and 35 deletions.
73 changes: 38 additions & 35 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,41 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.phonegap.plugins.estimote"
version="0.9">

<name>Estimote</name>

<description>
Allows access to Estimote API via JavaScript.
</description>

<engines>
<engine name="cordova" version=">=2.6.0" />
</engines>

<platform name="android">

<config-file target="res/xml/config.xml" parent="/*">
<feature name="Estimote">
<param name="android-package" value="org.apache.cordova.estimote.EstimotePlugin" />
</feature>
</config-file>

<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<service android:name="com.estimote.sdk.service.BeaconService" android:exported="false" />
</config-file>

<js-module src="www/estimote.js" name="estimote">
<clobbers target="estimote" />
</js-module>

<source-file src="src/android/EstimotePlugin.java" target-dir="src/org/apache/cordova/estimote" />
<source-file src="src/android/BluetoothError.java" target-dir="src/org/apache/cordova/estimote" />
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.phonegap.plugins.estimote"
version="0.9">

<name>Estimote</name>

<description>
Allows access to Estimote API via JavaScript.
</description>

<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>

<platform name="android">

<config-file target="res/xml/config.xml" parent="/*">
<feature name="Estimote">
<param name="android-package" value="org.apache.cordova.estimote.EstimotePlugin" />
</feature>
</config-file>

<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
</config-file>

<config-file target="AndroidManifest.xml" parent="/manifest/application">
<service android:name="com.estimote.sdk.service.BeaconService" android:exported="false" />
</config-file>

<js-module src="www/estimote.js" name="estimote">
<clobbers target="estimote" />
</js-module>

<source-file src="src/android/EstimotePlugin.java" target-dir="src/org/apache/cordova/estimote" />
<source-file src="src/android/BluetoothError.java" target-dir="src/org/apache/cordova/estimote" />
<source-file src="src/android/estimote-sdk-preview.jar" target-dir="libs" />

</platform>
</platform>

</plugin>

0 comments on commit 8027927

Please sign in to comment.