Skip to content

Latest commit

 

History

History
63 lines (42 loc) · 805 Bytes

README.md

File metadata and controls

63 lines (42 loc) · 805 Bytes

ibeacons

advertise.js

Setup

npm install bleacon

Running

OS X

node advertise.js

Linux

sudo node advertise.js

Region Timer app

cd regiontimer

Setup

cd regiontimer
phonegap platform add ios android
phonegap plugin add phonegap plugin add https://github.com/petermetz/cordova-plugin-ibeacon.git#3.3.0

Running

phonegap run --device

Other notes

To create from scratch

phonegap create regiontimer "com.makebluetooth.regiontimer" "Region Timer"

Edit config.xml, change the value of android-minSdkVersion from 7 to 10:

    <preference name="android-minSdkVersion" value="7" />

to

    <preference name="android-minSdkVersion" value="10" />