Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions permission_handler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 10.1.0

* Added support for the new Android 13 permission: NEARBY_WIFI_DEVICES.

## 10.0.2

* Adds a link to the issue tracker which shows up as "View/report issues" on pub.dev.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,12 @@
<!-- Permissions options for the `ignoreBatteryOptimizations` group -->
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" />

<!-- Permissions options for the `bluetooth` group -->
<!-- Permissions options for the `nearby devices` group -->
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" />
<uses-permission android:name="android.permission.BLUETOOTH_ADVERTISE" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-permission android:name="android.permission.NEARBY_WIFI_DEVICES" />

<!-- Permissions options for the `manage external storage` group -->
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
Expand Down
10 changes: 5 additions & 5 deletions permission_handler/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: permission_handler
description: Permission plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to request and check permissions.
version: 10.0.2
version: 10.1.0
repository: https://github.com/baseflow/flutter-permission-handler
issue_tracker: https://github.com/Baseflow/flutter-permission-handler/issues

Expand All @@ -22,10 +22,10 @@ dependencies:
flutter:
sdk: flutter
meta: ^1.7.0
permission_handler_android: ^10.0.0
permission_handler_apple: ^9.0.2
permission_handler_windows: ^0.1.0
permission_handler_platform_interface: ^3.7.0
permission_handler_android: ^10.1.0
permission_handler_apple: ^9.0.5
permission_handler_windows: ^0.1.1
permission_handler_platform_interface: ^3.8.0

dev_dependencies:
flutter_lints: ^1.0.4
Expand Down