Commit 781e63df by Maurits van Beusekom

Fixed formatting

parent 565e77c8
...@@ -22,7 +22,7 @@ To use this plugin, add `permission_handler` as a [dependency in your pubspec.ya ...@@ -22,7 +22,7 @@ To use this plugin, add `permission_handler` as a [dependency in your pubspec.ya
```yaml ```yaml
dependencies: dependencies:
permission_handler: '^3.2.0' permission_handler: '^3.3.0'
``` ```
> **NOTE:** As of version 3.1.0 the permission_handler plugin switched to the AndroidX version of the Android Support Libraries. This means you need to make sure your Android project is also upgraded to support AndroidX. Detailed instructions can be found [here](https://flutter.dev/docs/development/packages-and-plugins/androidx-compatibility). > **NOTE:** As of version 3.1.0 the permission_handler plugin switched to the AndroidX version of the Android Support Libraries. This means you need to make sure your Android project is also upgraded to support AndroidX. Detailed instructions can be found [here](https://flutter.dev/docs/development/packages-and-plugins/androidx-compatibility).
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
# #
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = 'permission_handler' s.name = 'permission_handler'
s.version = '3.2.2' s.version = '3.3.0'
s.summary = 'Permission plugin for Flutter.' s.summary = 'Permission plugin for Flutter.'
s.description = <<-DESC s.description = <<-DESC
A new Flutter project. A new Flutter project.
......
...@@ -99,7 +99,7 @@ class PermissionGroup { ...@@ -99,7 +99,7 @@ class PermissionGroup {
/// iOS: CoreLocation (Always and WhenInUse) /// iOS: CoreLocation (Always and WhenInUse)
static const PermissionGroup location = PermissionGroup._(3); static const PermissionGroup location = PermissionGroup._(3);
/// Android: /// Android:
/// When running on Android < Q: Fine and Coarse Location /// When running on Android < Q: Fine and Coarse Location
/// When running on Android Q and above: Background Location Permission /// When running on Android Q and above: Background Location Permission
/// iOS: CoreLocation - Always /// iOS: CoreLocation - Always
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment