├── .gitignore ├── LICENSE.txt ├── README.md ├── changelog.md ├── documentation.md ├── examples └── beacon-finder │ ├── README.md │ ├── beacon-finder-screenshot.png │ ├── config.xml │ ├── hooks │ └── README.md │ └── www │ ├── css │ └── app.css │ ├── images │ └── beacon.png │ ├── index.html │ └── js │ ├── app.js │ ├── lib │ ├── jquery-2.1.1.min.js │ └── touch.js │ ├── screen-live-development.js │ ├── screen-monitor-nearables.js │ ├── screen-monitor-regions.js │ ├── screen-range-beacons.js │ ├── screen-range-nearables.js │ ├── screen-scan-beacons.js │ └── screen-trigger-nearables.js ├── package.json ├── plugin.xml └── plugin └── src ├── android ├── EstimoteBeacons.java └── estimote-sdk-preview.jar ├── ios ├── EstimoteBeacons.h ├── EstimoteBeacons.m └── Frameworks │ └── EstimoteSDK.framework │ ├── EstimoteSDK │ ├── Headers │ └── Versions │ ├── A │ ├── EstimoteSDK │ └── Headers │ │ ├── ESTBeaconConnection.h │ │ ├── ESTBeaconDefinitions.h │ │ ├── ESTBeaconFirmwareVO.h │ │ ├── ESTBeaconManager.h │ │ ├── ESTBeaconManagerDelegate.h │ │ ├── ESTBeaconUpdateConfig.h │ │ ├── ESTBeaconUpdateInfo.h │ │ ├── ESTBeaconVO.h │ │ ├── ESTBluetoothBeacon.h │ │ ├── ESTBulkUpdater.h │ │ ├── ESTCloudManager.h │ │ ├── ESTDateRule.h │ │ ├── ESTDefinitions.h │ │ ├── ESTEddystone.h │ │ ├── ESTEddystoneFilter.h │ │ ├── ESTEddystoneFilterUID.h │ │ ├── ESTEddystoneFilterURL.h │ │ ├── ESTEddystoneFilterURLDomain.h │ │ ├── ESTEddystoneManager.h │ │ ├── ESTEddystoneTelemetry.h │ │ ├── ESTEddystoneUID.h │ │ ├── ESTFirmwareInfoVO.h │ │ ├── ESTMotionRule.h │ │ ├── ESTNearable.h │ │ ├── ESTNearableDefinitions.h │ │ ├── ESTNearableManager.h │ │ ├── ESTNearableRule.h │ │ ├── ESTNotificationTransporter.h │ │ ├── ESTOrientationRule.h │ │ ├── ESTProximityRule.h │ │ ├── ESTRule.h │ │ ├── ESTSecureBeaconManager.h │ │ ├── ESTSimulatedNearableManager.h │ │ ├── ESTTemperatureRule.h │ │ ├── ESTTrigger.h │ │ ├── ESTTriggerManager.h │ │ ├── ESTUtilityManager.h │ │ └── EstimoteSDK.h │ └── Current └── js ├── EstimoteBeacons.js ├── README.md └── conf.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/changelog.md -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/documentation.md -------------------------------------------------------------------------------- /examples/beacon-finder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/README.md -------------------------------------------------------------------------------- /examples/beacon-finder/beacon-finder-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/beacon-finder-screenshot.png -------------------------------------------------------------------------------- /examples/beacon-finder/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/config.xml -------------------------------------------------------------------------------- /examples/beacon-finder/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/hooks/README.md -------------------------------------------------------------------------------- /examples/beacon-finder/www/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/css/app.css -------------------------------------------------------------------------------- /examples/beacon-finder/www/images/beacon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/images/beacon.png -------------------------------------------------------------------------------- /examples/beacon-finder/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/index.html -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/app.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/lib/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/lib/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/lib/touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/lib/touch.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/screen-live-development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/screen-live-development.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/screen-monitor-nearables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/screen-monitor-nearables.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/screen-monitor-regions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/screen-monitor-regions.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/screen-range-beacons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/screen-range-beacons.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/screen-range-nearables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/screen-range-nearables.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/screen-scan-beacons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/screen-scan-beacons.js -------------------------------------------------------------------------------- /examples/beacon-finder/www/js/screen-trigger-nearables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/examples/beacon-finder/www/js/screen-trigger-nearables.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin.xml -------------------------------------------------------------------------------- /plugin/src/android/EstimoteBeacons.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/android/EstimoteBeacons.java -------------------------------------------------------------------------------- /plugin/src/android/estimote-sdk-preview.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/android/estimote-sdk-preview.jar -------------------------------------------------------------------------------- /plugin/src/ios/EstimoteBeacons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/EstimoteBeacons.h -------------------------------------------------------------------------------- /plugin/src/ios/EstimoteBeacons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/EstimoteBeacons.m -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/EstimoteSDK: -------------------------------------------------------------------------------- 1 | Versions/Current/EstimoteSDK -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/EstimoteSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/EstimoteSDK -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconConnection.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconDefinitions.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconFirmwareVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconFirmwareVO.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconManagerDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconManagerDelegate.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconUpdateConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconUpdateConfig.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconUpdateInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconUpdateInfo.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBeaconVO.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBluetoothBeacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBluetoothBeacon.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBulkUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTBulkUpdater.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTCloudManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTCloudManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTDateRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTDateRule.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTDefinitions.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystone.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilter.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilterUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilterUID.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilterURL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilterURL.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilterURLDomain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneFilterURLDomain.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneTelemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneTelemetry.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneUID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTEddystoneUID.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTFirmwareInfoVO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTFirmwareInfoVO.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTMotionRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTMotionRule.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearable.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearableDefinitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearableDefinitions.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearableManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearableRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNearableRule.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNotificationTransporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTNotificationTransporter.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTOrientationRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTOrientationRule.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTProximityRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTProximityRule.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTRule.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTSecureBeaconManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTSecureBeaconManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTSimulatedNearableManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTSimulatedNearableManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTTemperatureRule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTTemperatureRule.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTTrigger.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTTriggerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTTriggerManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTUtilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/ESTUtilityManager.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/EstimoteSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/A/Headers/EstimoteSDK.h -------------------------------------------------------------------------------- /plugin/src/ios/Frameworks/EstimoteSDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /plugin/src/js/EstimoteBeacons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/js/EstimoteBeacons.js -------------------------------------------------------------------------------- /plugin/src/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/js/README.md -------------------------------------------------------------------------------- /plugin/src/js/conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evothings/phonegap-estimotebeacons/HEAD/plugin/src/js/conf.json --------------------------------------------------------------------------------