Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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);
}
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.