Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
permission_handler
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
songyanzhi
permission_handler
Commits
a7647910
Unverified
Commit
a7647910
authored
Jun 30, 2023
by
Jeroen Weener
Committed by
GitHub
Jun 30, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update AndroidManifest documentation of example app (#1081)
parent
30f497c8
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
permission_handler/CHANGELOG.md
+6
-0
permission_handler/example/android/app/src/main/AndroidManifest.xml
+14
-1
permission_handler/pubspec.yaml
+1
-1
No files found.
permission_handler/CHANGELOG.md
View file @
a7647910
## 10.4.0+1
*
Updates AndroidManifest documentation in the example application with regards
to the use of READ_EXTERNAL_STORAGE, READ_MEDIA_IMAGES, READ_MEDIA_VIDEO and
READ_MEDIA_AUDIO permissions.
## 10.4.0
*
Adds support for the new Android 13 permission: BODY_SENSORS_BACKGROUND.
...
...
permission_handler/example/android/app/src/main/AndroidManifest.xml
View file @
a7647910
...
...
@@ -2,6 +2,13 @@
xmlns:tools=
"http://schemas.android.com/tools"
package=
"com.baseflow.permissionhandler.example"
>
<uses-feature
android:name=
"android.hardware.telephony"
android:required=
"false"
/>
<uses-feature
android:name=
"android.hardware.camera"
android:required=
"false"
/>
<!--
Internet permissions do not affect the `permission_handler` plugin, but are required if your app needs access to
the internet.
...
...
@@ -14,8 +21,14 @@
<uses-permission
android:name=
"android.permission.GET_ACCOUNTS"
/>
<!-- Permissions options for the `storage` group -->
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<uses-permission
android:name=
"android.permission.WRITE_EXTERNAL_STORAGE"
/>
<!-- Read storage permission for Android 12 and lower -->
<uses-permission
android:name=
"android.permission.READ_EXTERNAL_STORAGE"
/>
<!--
Granular media permissions for Android 13 and newer.
See https://developer.android.com/about/versions/13/behavior-changes-13#granular-media-permissions
for more information.
-->
<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"
/>
...
...
permission_handler/pubspec.yaml
View file @
a7647910
...
...
@@ -2,7 +2,7 @@ name: permission_handler
description
:
Permission plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to request and check permissions.
repository
:
https://github.com/baseflow/flutter-permission-handler
issue_tracker
:
https://github.com/Baseflow/flutter-permission-handler/issues
version
:
10.4.0
version
:
10.4.0
+1
environment
:
sdk
:
"
>=2.15.0
<4.0.0"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment