Skip to content

Commit 74a8ddc

Browse files
committed
docs: Fixed the permission declaration example in the AndroidManifest.xml file
1 parent 66d27c7 commit 74a8ddc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

permission_handler_platform_interface/lib/src/permissions.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ class Permission {
102102
/// - Devices running Android 13 (API level 33) and above: Should use [Permission.photos].
103103
///
104104
/// EXAMPLE: in Manifest:
105-
/// <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>
106-
/// <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
105+
/// <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32"/>;
106+
/// <uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>;
107107
///
108108
/// In Flutter to check the status:
109109
///

0 commit comments

Comments
 (0)