diff --git a/geolocator/CHANGELOG.md b/geolocator/CHANGELOG.md index dfe7dcd9..d6720628 100644 --- a/geolocator/CHANGELOG.md +++ b/geolocator/CHANGELOG.md @@ -1,8 +1,10 @@ ## 13.0.2 +- Resolves build error on ./gradlew - Updates dependency on geolocator_apple to version 2.3.8. - Migrates Android configuration of example app away from imperative gradle API. + ## 13.0.1 - Resolves problems when compiling non-web platforms because of illegal reference to `dart:js_interop`. diff --git a/geolocator/pubspec.yaml b/geolocator/pubspec.yaml index 12d08022..62e15bb4 100644 --- a/geolocator/pubspec.yaml +++ b/geolocator/pubspec.yaml @@ -27,7 +27,7 @@ dependencies: sdk: flutter geolocator_platform_interface: ^4.2.3 - geolocator_android: ^4.6.0 + geolocator_android: ^4.6.2 geolocator_apple: ^2.3.8 geolocator_web: ^4.1.1 geolocator_windows: ^0.2.3 diff --git a/geolocator_android/CHANGELOG.md b/geolocator_android/CHANGELOG.md index b0e5ab35..e7da640e 100644 --- a/geolocator_android/CHANGELOG.md +++ b/geolocator_android/CHANGELOG.md @@ -1,3 +1,6 @@ +## 4.6.2 +Fixes the ./gradlew build issue due to Missing permissions + ## 4.6.1 * Fixes a bug where the plugin throws an exception while requesting locations updates with coarse location permission only. diff --git a/geolocator_android/android/build.gradle b/geolocator_android/android/build.gradle index 928c59da..070e4949 100644 --- a/geolocator_android/android/build.gradle +++ b/geolocator_android/android/build.gradle @@ -32,7 +32,7 @@ android { minSdkVersion 16 } lintOptions { - disable 'InvalidPackage' + disable 'InvalidPackage', 'MissingPermission' } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 diff --git a/geolocator_android/pubspec.yaml b/geolocator_android/pubspec.yaml index 8841c116..f9faf7f1 100644 --- a/geolocator_android/pubspec.yaml +++ b/geolocator_android/pubspec.yaml @@ -2,7 +2,7 @@ name: geolocator_android description: Geolocation plugin for Flutter. This plugin provides the Android implementation for the geolocator. repository: https://github.com/baseflow/flutter-geolocator/tree/main/geolocator_android issue_tracker: https://github.com/baseflow/flutter-geolocator/issues?q=is%3Aissue+is%3Aopen -version: 4.6.1 +version: 4.6.2 environment: sdk: ">=2.15.0 <4.0.0"