Setup Instructions:

  1. iOS Setup:

    Add privacy usage descriptions for camera, photo library, and microphone in Info.plist :

    • key Privacy - Camera Usage Description and a usage description.

    • key Privacy - Photo Library Additions Usage Description and a usage description.

    • key Privacy - Microphone Usage Description and 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>
  1. Android Setup:

    Grant internet permission and adjust minimum SDK versions in AndroidManifest.xml and build.gradle :

    • Add Internet permission on AndroidManifest.xml in your android/app/src/main/AndroidManifest.xml file.

        <uses-permission android:name="android.permission.INTERNET"/>
      

      Change the minimum Compile SDK version to 34 (or higher) in your android/app/build.gradle file.

        compileSdkVersion 34
      

      Change the minimum Android SDK version to 21 (or higher) in your android/app/build.gradle file.

        minSdkVersion 21
Discussion
Thanks for sharing

A very concise and clearly written lab, thank you for contributing @alaminkarno

2

You're welcome !!!

7

2