Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Xebec19 authored Nov 29, 2024
1 parent 8d866e7 commit 256e516
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,11 @@ On _Android_ you need to add a permission to `AndroidManifest.xml`:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
```

If your app requires **broad** access to external storage, you'll need:
```xml
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" tools:ignore="ScopedStorage" />
```

Also, android above `Marshmallow` needs runtime permission to record audio. Using [react-native-permissions](https://github.com/yonahforst/react-native-permissions) will help you out with this problem. Below is sample usage before when before staring the recording.

```ts
Expand Down

0 comments on commit 256e516

Please sign in to comment.