python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Execution failed for task ':location:parseDebugLocalResources'
i'm trying to run my project , i have this page where i want to get current location of the user
but i get a message error when i run it
Message error
** Execution failed for task ':location:parseDebu...
nullonprog
Votes: 0
Answers: 0
Flutter geolocator not able to get the exact current position and it always return same latitude and longitude value
Here's my code
void getlocation() async {
LocationPermission per = await Geolocator.checkPermission();
if (per == LocationPermission.denied ||
per == LocationPermission.deniedForever) {
print(&q...
yeon_2
Votes: 0
Answers: 1
Plugin.Geolocator (partially) uses coarse locations in Android 12
I have a tracking app which uses Plugin.Geolocator (4.6.2-beta) to sample locations, as the user moves. This worked perfectly until upgrading to android 12. Now it jumps from the true location to near...
JoeTaicoon
Votes: 0
Answers: 1
Unhandled Exception: MissingPluginException geolocator package which works fine on android but not in IOS
Here is my code to fetch location which is working on android but in IOS its showing error
Position position = await Geolocato.getCurrentPosition( desiredAccuracy: LocationAccuracy.high);
ERROR:
Unhan...

hafeezpp
Votes: 0
Answers: 0