Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added plugin support for new granular Android 13 storage permissions … #941

Merged
merged 2 commits into from Oct 19, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions permission_handler/CHANGELOG.md
@@ -1,3 +1,7 @@
## 10.2.0

* Added support for the new Android 13 permissions: SCHEDULE_EXACT_ALARM, READ_MEDIA_IMAGES, READ_MEDIA_VIDEO and READ_MEDIA_AUDIO

## 10.1.0

* Added support for the new Android 13 permission: NEARBY_WIFI_DEVICES.
Expand Down
Expand Up @@ -16,6 +16,9 @@
<!-- Permissions options for the `storage` group -->
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />

<!-- Permissions options for the `camera` group -->
<uses-permission android:name="android.permission.CAMERA"/>
Expand Down Expand Up @@ -79,6 +82,9 @@
<!-- Permissions options for the `access notification policy` group -->
<uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY"/>

<!-- Permissions options for the `alarm` group -->
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />

<application
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher"
Expand Down
10 changes: 5 additions & 5 deletions permission_handler/pubspec.yaml
@@ -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.1.0
version: 10.2.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.1.0
permission_handler_apple: ^9.0.5
permission_handler_windows: ^0.1.1
permission_handler_platform_interface: ^3.8.0
permission_handler_android: ^10.2.0
permission_handler_apple: ^9.0.7
permission_handler_windows: ^0.1.2
permission_handler_platform_interface: ^3.9.0

dev_dependencies:
flutter_lints: ^1.0.4
Expand Down