11import Tabs from " @theme/Tabs" ;
22import TabItem from " @theme/TabItem" ;
33
4- Your app must have permissions configured to use the microphone and camera.
4+ Your app needs to have permissions configured in order to use the microphone and camera.
55
66### Android
77
8- For android you need to ask for certain permissions:
8+ Permissions below are required to stream audio and video with Fishjam on Android.
99
1010- ` android.permission.CAMERA `
1111- ` android.permission.RECORD_AUDIO `
@@ -15,7 +15,7 @@ For android you need to ask for certain permissions:
1515
1616 <TabItem value = " expo" label = " Expo" >
1717
18- You need to modify ` app.json ` file and add all permissions:
18+ Add required permissions to the ` app.json ` file.
1919
2020``` json title='app.json'
2121{
@@ -36,7 +36,7 @@ You need to modify `app.json` file and add all permissions:
3636 </TabItem >
3737 <TabItem value = " rn" label = " Bare workflow" >
3838
39- You need to modify ` AndroidManifest.xml ` file, and these lines:
39+ Add required permissions to the ` AndroidManifest.xml ` file.
4040
4141``` xml title='AndroidManifest.xml'
4242<manifest xmlns : android =" http://schemas.android.com/apk/res/android" >
@@ -67,8 +67,8 @@ To update default content of permission alert, you can add these settings to `ap
6767 "ios" : {
6868 ...
6969 "infoPlist" : {
70- "NSCameraUsageDescription" : " Your message ." ,
71- "NSMicrophoneUsageDescription" : " Your message "
70+ "NSCameraUsageDescription" : " Allow $(PRODUCT_NAME) to access your camera ." ,
71+ "NSMicrophoneUsageDescription" : " Allow $(PRODUCT_NAME) to access your microphone. "
7272 }
7373 },
7474 }
@@ -78,14 +78,13 @@ To update default content of permission alert, you can add these settings to `ap
7878 </TabItem >
7979 <TabItem value = " rn" label = " Bare workflow" >
8080
81- You need to make sure that ` Info.plist ` contains these entries:
81+ Ensure ` Info.plist ` contains camera and microphone usage description entries:
8282
8383``` xml title='Info.plist'
8484 <key >NSCameraUsageDescription</key >
8585 <string >Allow $(PRODUCT_NAME) to access your camera.</string >
8686 <key >NSMicrophoneUsageDescription</key >
87- <string >Allow $(PRODUCT_NAME) to access your microphone</string >
88-
87+ <string >Allow $(PRODUCT_NAME) to access your microphone.</string >
8988```
9089
9190 </TabItem >
0 commit comments