forked from jmusyj/phonegap-estimote-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fixed location of Beacon service in plugin.xml
- Loading branch information
Showing
1 changed file
with
38 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |