Setup Instructions:
-
iOS Setup:
Add privacy usage descriptions for camera, photo library, and microphone in
Info.plist:-
key
Privacy - Camera Usage Descriptionand a usage description. -
key
Privacy - Photo Library Additions Usage Descriptionand a usage description. -
key
Privacy - Microphone Usage Descriptionand a usage description.
-
If editing Info.plist as text, add:
<key>NSCameraUsageDescription</key>
<string>your usage description here</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>your usage description here</string>
<key>NSMicrophoneUsageDescription</key>
<string>your usage description here</string>
-
Android Setup:
Grant internet permission and adjust minimum SDK versions in
AndroidManifest.xmlandbuild.gradle:-
Add Internet permission on
AndroidManifest.xmlin yourandroid/app/src/main/AndroidManifest.xmlfile.<uses-permission android:name="android.permission.INTERNET"/>Change the minimum Compile SDK version to 34 (or higher) in your
android/app/build.gradlefile.compileSdkVersion 34Change the minimum Android SDK version to 21 (or higher) in your
android/app/build.gradlefile.minSdkVersion 21
-
7