Coder Social home page Coder Social logo

Comments (13)

sulymkaa avatar sulymkaa commented on May 29, 2024 4

is there any update here? i have exactly the same issue in my application.

from cordova-plugin-geolocation.

Danbardo avatar Danbardo commented on May 29, 2024 1

Sure thing,
https://github.com/Danbardo/cordova_geolocation_bug

from cordova-plugin-geolocation.

janpio avatar janpio commented on May 29, 2024

What platform?

from cordova-plugin-geolocation.

Danbardo avatar Danbardo commented on May 29, 2024

Sorry, Andoid 8.0.0.

Haven't tested on iOS yet.

from cordova-plugin-geolocation.

janpio avatar janpio commented on May 29, 2024

Is this consistent on other Android versions as well?
Can it be reproduced in an emulator?

from cordova-plugin-geolocation.

Danbardo avatar Danbardo commented on May 29, 2024

I have reproduced the problem with an older device which is using 5.0.1.

Unfortunately I can't isolate the problem.

I have rebuilt the project several times and the new projects never exhibit the same behavior. Everything between projects is identical, I am not sure why the original project is causing the issue.

from cordova-plugin-geolocation.

janpio avatar janpio commented on May 29, 2024

(Anecdotally I have read/heard multiple times that geolocation is fishy when the app is started without the permissions and only then added - but afaik nobody was ever able to give a good reproduction case :( )

from cordova-plugin-geolocation.

Danbardo avatar Danbardo commented on May 29, 2024

This issue is frequently occuring for me now, I am not sure why, but now I can't get fix it, here are the steps I take to reproduce it:

cordova create test --id "com.test.test" --name "test"
cd test
cordova plugin add cordova-plugin-geolocation

Delete everything in the init.js and replace with:

document.addEventListener("deviceready",function(){
	getGps();
},false);
function getGps(){
	navigator.geolocation.getCurrentPosition(gpsSuccess, gpsError,{timeout:5000,maximumAge:10000,enableHighAccuracy:true});
}
function gpsSuccess(position) {
	alert('Success');

}
function gpsError(error) {
	alert('GPS Error: code: '+error.code+'\n'+'message:'+error.message+'\n');
	getGps();
}
cordova platform add [email protected]
cordova run android

Turn Location on before running the application, you will see it works.
Exit the application.
Turn Location off.
Re-enter the application.
Wait for the timeout alert.
Turn Location on.
Notice that the application never accesses the location.

Tested on Android 8.0.0 and 5.0.1

from cordova-plugin-geolocation.

janpio avatar janpio commented on May 29, 2024

Turn Location on.
Notice that the application never accesses the location.

Do you restart the app in between those steps or call getGps manually somehow? Otherwise that doesn't look to wrong from what you wrote - deviceready won't fire again after turning location on I guess?

from cordova-plugin-geolocation.

Danbardo avatar Danbardo commented on May 29, 2024

Nah, I don't leave the app. The getGps() is called every time the request times out. So every time you see the error alert, it should run the getGps() function again.

Am I wrong about that? I think it works because I see errors every 5 seconds.

Thanks for editing my post :)

from cordova-plugin-geolocation.

janpio avatar janpio commented on May 29, 2024

Ah, I missed the getGPS() in the error handler.
Could you upload that project to Github so a developer just has to clone that instead of doing those steps manually?

from cordova-plugin-geolocation.

breautek avatar breautek commented on May 29, 2024

I've never encountered this issue myself, but considering that we do not actually have any geolocation implementation for android (the plugin just handles declaring capabilities and permissions)... it sounds like an issue with the chrome webview.

from cordova-plugin-geolocation.

breautek avatar breautek commented on May 29, 2024

Closing as stale.

from cordova-plugin-geolocation.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.