ZOOM Setup

To create zoom keys

  1. Firstly, create account on https://marketplace.zoom.us/

  2. Go to develop and Select Build App

  3. Create SDK credentials ,

  4. Copy SDK Key and SDK Secret Key

  5. Paste SDK Key and SDK Secret Key to app code.

Project directory\lib\common\apidata.dart

  • static const String zoomAppKey = "ENTER YOUR ZOOM SDK APP KEY";
    static const String zoomSecretKey = "ENTER YOUR ZOOM SDK APP SECRET KEY;

Points to be considered -

  1. Zoom Meeting will work only when you will set targetSdkVersion 30 in android/app/build.gradle file. If you will set targetSdkVersion 31 (which is required for Play Store) in android/app/build.gradle file, your App will crash when you will try to join Zoom meeting. This issue will remain untill the developer of flutter_zoom_sdk package will fix it and release a new update.

  2. Right click on pubspec.yaml file, in context menu, go to Open In -> Terminal and then run 'flutter pub run flutter_zoom_sdk:unzip_zoom_sdk' (without quote). See the given images Screenshot-1 & Screenshot-2 for reference.

Last updated