flutter-geolocator
flutter-geolocator copied to clipboard
Android and iOS Geolocation plugin for Flutter
## 🐛 Bug Report When i have enabled foregroundNotificationConfig and i am using app for longer time lets say one day (app is running but in minimized state), location tracking...
## 🐛 Bug Report Cannot create flutter build after updating every thing in pubspec. Error: > Task :geolocator_android:compileDebugJavaWithJavac FAILED /Users/sumeet/.pub-cache/hosted/pub.dartlang.org/geolocator_android-4.0.2/android/src/main/java/com/baseflow/geolocator/location/BackgroundNotification.java:71: error: cannot find symbol notificationManager.createNotificationChannel(channel); Flutter doctor: [✓] Flutter (Channel...
## 🐛 Bug Report The "getCurrentPosition" method is normal for models below Android 12. Android 12 and some Huawei models report an error "TimeoutException after 0:00:03.000000: Future not completed", but...
## 🐛 Bug Report It's not possible to retrieve a location, when `forceAndroidLocationManager: true` on a device with Google Play Services installed. Detailed findings below. ### Expected behavior ### Reproduction...
## 💬 Questions and Help I have initialized my Geolocator stream for iOS like this ```dart if (defaultTargetPlatform == TargetPlatform.iOS || defaultTargetPlatform == TargetPlatform.macOS) { locationSettings = AppleSettings( accuracy: LocationAccuracy.high,...
### :sparkles: What kind of change does this PR introduce? (Bug fix, feature, docs update...) Docs update ### :arrow_heading_down: What is the current behavior? ### :new: What is the new...
## 🐛 Bug Report **Code:** ```dart Future determinePosition() async { bool serviceEnabled; LocationPermission permission; // Test if location services are enabled. serviceEnabled = await Geolocator.isLocationServiceEnabled(); if (!serviceEnabled) { // Location...
## 🚀 Feature Requests ### Contextualize the feature ### Describe the feature The location plugin allows me to show pop to enable GPS location via google play services. Can you...
On flutter web in IOS browsers not working any thing
Hi, On iOS 15.4 I check that I can't get `getCurrentPosition(desiredAccuracy: LocationAccuracy.high)` or `getCurrentPosition(desiredAccuracy: LocationAccuracy.best)` when `getLocationAccuracy() ` is `reduced`, so the library doesn't manage that automatically and I need...