Cristian

Results 2 comments of Cristian

Try set accuracy low as below: `const location = await Location.getCurrentPositionAsync({ accuracy: isAndroid ? Location.Accuracy.Low : Location.Accuracy.Lowest, }) ` I set Location.Accuracy.Balanced, which caused long time to get location sometimes....

@rvieceli I tried passing it balanced as value, and even that value worked for me, a higher value gave problems. This is my code now, including the request for permission...