Table of Contents

Send an email to [email protected] to get your VENDOR_ID and NAMESPACE to be used in the Android Integration steps below

1. Wise Flutter Package

Add wisesdk package to your pubspec.yaml and execute flutter pub get command to install the package.

dependencies:
  wisesdk: 0.1.2

Package home page: https://pub.dev/packages/wisesdk

2. Android Integration

Prerequisites

  1. Open your_project_folder/adroid/build.gradle and add maven and jcenter repositories to allprojects
allprojects {
    repositories {
        google()
        mavenCentral()

				// Wise repository
        maven {
            url "<https://wise-maven.s3.ap-south-1.amazonaws.com/android/releases>"
        }

        jcenter() // Required for zoom SDK
    }
}
  1. Download Zoom SDK and unzip the file. After unzipping the downloaded file, you will find two folders mobilertc inside.

    Download zoom-sdk-android-6.0.2.21328

  2. Move mobilertc folders into your_project_folder/android folder.