Skip to content

Commit

Permalink
Update Camera README file with new permissions info
Browse files Browse the repository at this point in the history
  • Loading branch information
RB-Hippo committed Jul 26, 2023
1 parent e9ab1dd commit 11b764a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions camera/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Read about [Configuring `Info.plist`](https://capacitorjs.com/docs/ios/configura
This API requires the following permissions be added to your `AndroidManifest.xml`:

```xml
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
<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" android:minSdkVersion="33" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="29" />
```

The storage permissions are for reading/saving photo files.
Expand Down

0 comments on commit 11b764a

Please sign in to comment.