Commit 9dd53029 by Sai Sebastian
parents b68d6b10 a6bba58d
...@@ -28,7 +28,7 @@ android { ...@@ -28,7 +28,7 @@ android {
compileSdkVersion 32 compileSdkVersion 32
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 23
targetSdkVersion 32 targetSdkVersion 32
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
......
...@@ -217,11 +217,16 @@ public class FlutterZoomSdkPlugin implements FlutterPlugin, MethodChannel.Method ...@@ -217,11 +217,16 @@ public class FlutterZoomSdkPlugin implements FlutterPlugin, MethodChannel.Method
public void onZoomAuthIdentityExpired() { public void onZoomAuthIdentityExpired() {
} }
@Override
public void onNotificationServiceStatus(SDKNotificationServiceStatus sdkNotificationServiceStatus) {
}
}; };
if(!zoomSDK.isLoggedIn()){ if(!zoomSDK.isLoggedIn()){
StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin(); StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin();
params.userId = options.get("userId"); // params.userId = options.get("userId");
params.zoomAccessToken = options.get("zoomAccessToken"); params.zoomAccessToken = options.get("zoomAccessToken");
params.meetingNo = options.get("meetingNo"); params.meetingNo = options.get("meetingNo");
params.displayName = options.get("displayName"); params.displayName = options.get("displayName");
...@@ -388,11 +393,16 @@ public class FlutterZoomSdkPlugin implements FlutterPlugin, MethodChannel.Method ...@@ -388,11 +393,16 @@ public class FlutterZoomSdkPlugin implements FlutterPlugin, MethodChannel.Method
public void onZoomAuthIdentityExpired() { public void onZoomAuthIdentityExpired() {
} }
@Override
public void onNotificationServiceStatus(SDKNotificationServiceStatus sdkNotificationServiceStatus) {
}
}; };
if(!zoomSDK.isLoggedIn()){ if(!zoomSDK.isLoggedIn()){
StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin(); StartMeetingParamsWithoutLogin params = new StartMeetingParamsWithoutLogin();
params.userId = options.get("userId"); // params.userId = options.get("userId");
params.zoomAccessToken = options.get("zoomAccessToken"); params.zoomAccessToken = options.get("zoomAccessToken");
params.meetingNo = options.get("meetingId"); params.meetingNo = options.get("meetingId");
params.displayName = options.get("userId"); params.displayName = options.get("userId");
......
name: flutter_zoom_sdk name: flutter_zoom_sdk
description: Zoom SDK from ZOOM ported to flutter as plugin with all necessary features and with Null Safety which is implementation by EvilRATT description: Zoom SDK from ZOOM ported to flutter as plugin with all necessary features and with Null Safety which is implementation by EvilRATT
version: 1.1.3+8 version: 1.1.5+10
homepage: https://gitlab.techware.co.in/sai/Zoom_SDK homepage: https://gitlab.techware.co.in/sai/Zoom_SDK
repository: https://gitlab.techware.co.in/sai/Zoom_SDK repository: https://gitlab.techware.co.in/sai/Zoom_SDK
issue_tracker: https://gitlab.techware.co.in/sai/Zoom_SDK/issues issue_tracker: https://gitlab.techware.co.in/sai/Zoom_SDK/issues
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment