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

Changes for the new npm id #435

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions BB10-Cordova/simplexpbeaconplugin/plugin/Readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Bluetooth iBeacon Cross Platform Cordova Plugin #

__Note: This module was previously published under the ID cordova-plugin-beacon, but has been renamed to allow a newer module to use that ID.__

This Bluetooth Smart iBeacon WebWorks Cordova Cross Platform Plugin (**SimpleXpBeaconPlugin**) is intended to allow WebWorks applications to monitor and detect devices using the Apple de-facto iBeacon standard. It supports all the following platforms:

- **BlackBerry 10**
Expand Down
4 changes: 2 additions & 2 deletions BB10-Cordova/simplexpbeaconplugin/plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "cordova-plugin-beacon",
"name": "cordova-plugin-simple-beacon",
"version": "1.1.0",
"description": "BlackBerry 10 Community Contributed SimpleXpBeaconPlugin API",
"cordova": {
"id": "cordova-plugin-beacon",
"id": "cordova-plugin-simple-beacon",
"platforms": [
"blackberry10",
"android",
Expand Down
8 changes: 4 additions & 4 deletions BB10-Cordova/simplexpbeaconplugin/plugin/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-beacon"
id="cordova-plugin-simple-beacon"
version="1.1.0">

<name>SimpleXpBeaconPlugin</name>
Expand All @@ -16,13 +16,13 @@
<lib-file src="src/blackberry10/native/device/libSimpleXpBeaconPlugin.so" arch="device"/>
<lib-file src="src/blackberry10/native/simulator/libSimpleXpBeaconPlugin.so" arch="simulator"/>
<config-file target="www/config.xml" parent="/widget">
<feature name="cordova-plugin-beacon" value="cordova-plugin-beacon" />
<feature name="cordova-plugin-simple-beacon" value="cordova-plugin-simple-beacon" />
</config-file>
</platform>

<platform name="android">
<config-file target="res/xml/config.xml" parent="/widget">
<feature name="cordova-plugin-beacon">
<feature name="cordova-plugin-simple-beacon">
<param name="android-package" value="com.blackberry.community.SimpleXpBeaconPlugin"/>
</feature>
</config-file>
Expand All @@ -39,7 +39,7 @@

<platform name="ios">
<config-file target="config.xml" parent="/widget">
<feature name="cordova-plugin-beacon">
<feature name="cordova-plugin-simple-beacon">
<param name="ios-package" value="SimpleXpBeaconPlugin" />
</feature>
</config-file>
Expand Down