@carson.zoom
i have follow all the steps to disable screen record.
- Create your own activity, for example, MyMeetingActivity
- In
config.xml, add the following:
<string name="zm_config_conf_activity">us.zoom.sdksample.MyMeetingActivity</string>
- Declare the Activity in your AndroidManifest.xml
- In your
MyMeetingActivityclass,extends MeetingActivity - Add this line in onCreate method
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
but when i join meeting from fragment using following code
it’s open default meeting activity and screen recoder also not disable.
