Send an email to [email protected] to get your VENDOR_ID and NAMESPACE to be used in the Android Integration steps below
Add wisesdk package to your pubspec.yaml and execute flutter pub get command to install the package.
dependencies:
wisesdk: 1.0.0
Package home page: https://pub.dev/packages/wisesdk
your_project_folder/adroid/build.gradle and add maven and jcenter repositories to allprojectsallprojects {
repositories {
google()
mavenCentral()
// Wise repository
maven {
url "<https://wise-maven.s3.ap-south-1.amazonaws.com/android/releases>"
}
jcenter() // Required for zoom SDK
}
}
Download Zoom SDK and unzip the file. After unzipping the downloaded file, you will find mobilertc inside.
Move mobilertc folders into flutter_project_folder/android folder.