I have integrated Zoom SDK into android application where teacher can take live classes and student would access it. The problem is I need to prevent taking screenshots or screen-record while live meeting is going on. MeetingActivity is getting intented when meeting is started. But I do not find any override methods in the MeetingActivity onCreate to enable the below code:
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
Also I cannot edit the sdk code. Kindly suggest me a possible way to handle this.