Search found 10 matches

by Uli
02:48, 27 Mar 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Update: Works here with Cordova 4.x
Don't forget to add xmlns:gap="http://phonegap.com/ns/1.0" to the <widget> in config.xml, that was my mistake
by Uli
15:28, 20 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Hi, well it works with Cordova 3 & 4. Thanks for the suggestion, I have some other apps built on Phonegap 4 so I know it's not the issue. I'll just use Cordova instead of Phonegap for this one...
by Uli
21:21, 18 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Thanks, I tested again with a plugin upgrade with Phonegap 4.2.0 (not cordova) and it doesn't work. I'll try now with Cordova 4.2...
by Uli
18:03, 18 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Confirmed, 3.6 works, 4.2 doesn't ... But now beacon.uuid is undefined, but Major and Minor work. function onBeaconsRanged(beaconInfo){ for (var i in beaconInfo.beacons){ var beacon = beaconInfo.beacons[i]; html += '<li>UUID:'+beacon.uuid+'<br>MAJOR:'+beacon.major+'<br>MINOR:'+beacon.minor+'</li>'; ...
by Uli
19:21, 13 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Updated plugin to version 0.7.0 from master found here : https://github.com/evothings/phonegap-estimotebeacons
Same issue..
by Uli
19:06, 13 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Thanks again... This is what I've tried: estimote.beacons.startMonitoringForRegion({}, onMonitoringSuccess, onError); function onMonitoringSuccess(regionState){ $('#debug').append('<p>State:'+regionState.state+'</p>'); } function onError(__error){ $('#debug').append('<p>Error:'+__error+'</p>'); } An...
by Uli
18:40, 13 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Well, nothing works here window.EstimoteBeacons.startMonitoringForRegion(function () { //every now and then get the list of beacons in range setInterval(function () { window.EstimoteBeacons.getBeacons(function (data) { $('#debug').append('<p>Monitor:'+data+'</p>'); }); }, 1000); }); window.EstimoteB...
by Uli
18:10, 13 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Re: Phonegap help needed

Yes indeed, I'm developing for Android. Thanks for the reply.
by Uli
17:19, 13 Feb 2015
Forum: Questions and answers
Topic: Phonegap help needed
Replies: 15
Views: 73469

Phonegap help needed

Hi! I hope I'm posting in the right forum :) function onDeviceReady(){ estimote.beacons.startEstimoteBeaconsDiscoveryForRegion({}, onScan, onError); } function onError(__info){ $('#debug').append('<p>Error:'+__info+'</p>'); } I always get Error: INVALID ACTION How can I debug this? Cheers

Go to advanced search