You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
##### Know more about [react-native-gesture-handler](https://www.npmjs.com/package/react-native-gesture-handler)
48
50
49
-
##### 3. Add Permission in iOS
51
+
##### 3. Add Audio Recording Permissions
50
52
51
-
if you want to use recorder features in iOS side you have to add **NSMicrophoneUsageDescription** permission in info.plist and add description based on your use-case.
53
+
##### iOS
52
54
53
-
here is a sample for info.plist permission and description
55
+
If you want to use recorder features in iOS, you have to add **NSMicrophoneUsageDescription** permission in info.plist and add description based on your use-case.
54
56
55
-
```plist
57
+
Here is a sample for info.plist permission and description
58
+
59
+
```
56
60
<key>NSMicrophoneUsageDescription</key>
57
-
<string>Needed permission to record audio</string>
61
+
<string>Needed permission to record audio</string>
62
+
```
63
+
64
+
##### Android
65
+
66
+
If you want to use recorder features in Android, you have to add **RECORD_AUDIO** permission in AndroidManifest.xml
When you are want to record a audio and show waveform that recording at that time you need to create waveform with `live` mode. Same as `static` mode we have type safety for ref. You can only provide `IRecordWaveformRef` to `live` mode waveform.
99
+
When you want to record a audio and show waveform for that recording, you need to create waveform with `live` mode. Same as `static` mode we have type safety for ref. You can only provide `IRecordWaveformRef` to `live` mode waveform.
0 commit comments