You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now rolled back the release to commit: 8179409
With Capacitor Geolocation 2.x , the geolocation provided by android is only updated each 5 second in certain cases.. which cause the app to be unusable.
I tried to changes those value directly but the better would be to expose them to the capacitor javascript plugin.. and also I'm not sure they work super well yet.
The text was updated successfully, but these errors were encountered:
Right now rolled back the release to commit: 8179409
With Capacitor Geolocation 2.x , the geolocation provided by android is only updated each 5 second in certain cases.. which cause the app to be unusable.
When using capacitor geolocation 1.x, the location update is called like this: https://github.com/ionic-team/capacitor/blob/1.5.3/android/capacitor/src/main/java/com/getcapacitor/plugin/Geolocation.java#L96 , telling android to give position as fast as possible
But with 2.x, it somehow tells to update only every 5s
https://github.com/ionic-team/capacitor-plugins/blob/main/geolocation/android/src/main/java/com/capacitorjs/plugins/geolocation/Geolocation.java#L50
I tried to changes those value directly but the better would be to expose them to the capacitor javascript plugin.. and also I'm not sure they work super well yet.
The text was updated successfully, but these errors were encountered: