Disable zoom on going notification when meeting started

Hi @abhishekt,

Thanks fo the post. After consulting the engineering team on this, the meeting notification cannot be disabled as it is a system requirement. However, you could customize the notification by using the interface
setCustomizedNotificationData(CustomizedNotificationData data, InMeetingNotificationHandle handle) in MeetingSettingsHelper(https://zoom.github.io/zoom-sdk-android/us/zoom/sdk/MeetingSettingsHelper.html#setCustomizedNotificationData-us.zoom.sdk.CustomizedNotificationData-us.zoom.sdk.InMeetingNotificationHandle-).

You could call this interface after successfully initialized the SDK

InMeetingNotificationHandle handle=new InMeetingNotificationHandle() {

        @Override
        public boolean handleReturnToConfNotify(Context context, Intent intent) {
            intent = new Intent(context, MyMeetingActivity.class);
            intent.addFlags(Intent.FLAG_ACTIVITY_REORDER_TO_FRONT);
            if(!(context instanceof Activity)) {
                intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
            }
            intent.setAction(InMeetingNotificationHandle.ACTION_RETURN_TO_CONF);
            context.startActivity(intent);
            return true;
        }
    };
ZoomSDK.getInstance().getMeetingSettingsHelper().setCustomizedNotificationData(null, handle);

You could refer to the implementation in our demo app: https://github.com/zoom/zoom-sdk-android/blob/master/mobilertc-android-studio/sample/src/main/java/us/zoom/sdksample/ui/InitAuthSDKActivity.java#L123

Hope this helps. Thanks!