I have a problem with getting location in phonegap (1.8.1) on iOS. It happens just first time, when the alert dialog with Enabling location services pops up. After I click on OK or Dont allow, App crashed.
Here is xcxode log:
Backed up: localStorage database
bool _WebTryThreadLock(bool), 0x2d0b00: Tried to obtain the web lock from a thread other than the main thread or the web thread. This may be a result of calling to UIKit from a secondary thread. Crashing now...
1 0x37e3f927 WebThreadLock
2 0x3416ba09 <redacted>
3 0x6cf75 -[CDVPlugin writeJavascript:]
4 0x8fb73 -[CDVLocalStorage backup:withDict:]
5 0x902b9 __33-[CDVLocalStorage onResignActive]_block_invoke_0201
6 0x3125011f <redacted>
7 0x3125e259 <redacted>
8 0x3125e3b9 <redacted>
9 0x313fda11 <redacted>
10 0x313fd8a4 start_wqthread
function in JS:
function foo() {
var onSuccessLocation = function(position) {
console.log("location ok");
}
var onFailLocation = function() {
console.log("location fail");
}
navigator.geolocation.getCurrentPosition(onSuccessLocation, onFailLocation);
}