geocoding_android 5.0.0
geocoding_android: ^5.0.0 copied to clipboard
A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
5.0.0 #
- BREAKING CHANGES:
- Implements version 4.0.0 of the geocoding_platform_interface.
- Allows passing the
Localewith thelocationFromAddress,locationFromCoordinatesandplacemarkFromAddressmethods instead of having to separately set thesetLocaleIdentifiermethod (this resolves potential race condition). - Changes the
Location.timestampfield to allownullvalues. Not all platforms (e.g. Android) specify a timestamp indicating when the coordinates for an address where resolved.
- Allows passing the
- Implements version 4.0.0 of the geocoding_platform_interface.
- Offers access to the Android native
geocoderAPI by importing thegeocoder.dartlibrary (using:import "package:geocoding_android/geocoder.dart";).
4.0.1 #
- Resolved issue #271 where the app could crash if the onError message was null. The error message is now properly handled as nullable.
4.0.0 #
- BREAKING CHANGES Please update to Flutter 3.29+ before updating to this version
- Updates Android CompileSDK to 35
- Migrates example project to applying Gradle plugins with the declarative plugins block
- Updates kotlin version to soon minimal supported Kotlin version
1.8.10 - Updates Gradle version to
8.11.1
3.3.1 #
- Removes deprecated support for Android V1 embedding as support will be removed from Flutter (see flutter/flutter#144726).
3.3.0 #
- Adds
setLocaleIdentifierto the Android example app.
3.2.0 #
- Exposes isPresent() call that returns true if there is a geocoder implementation present that may return results.
3.1.0 #
- Fixes deprecation build warnings.
- Adds Android API 34 support.
3.0.0 #
- BREAKING CHANGES:
- Updates
geocoding_platform_interfaceto version 3.1.0. - Adds method
setLocaleIdentifierto set the locale for all calls to the geocoding platform. - Removes the
localeIdentifierargument from all methods. Use methodsetLocaleIdentifierto configure the locale.
- Updates
- Implements
placemarkFromAddress.
2.1.2 #
- Downgrades Android Gradle plugin to version 7.3.1 so the project is inline with current Flutter stable (version 3.10.5).
2.1.1 #
- Updates the Android Gradle plugin to version 8 and the Android Gradle build tools to version 8.0.2.
2.1.0 #
- Splits from
geocodingas a federated implementation.