How to disable screen recorder and screen shoret in zoom sdk

@carson.zoom
i have follow all the steps to disable screen record.

  1. Create your own activity, for example, MyMeetingActivity
  2. In config.xml , add the following:
<string name="zm_config_conf_activity">us.zoom.sdksample.MyMeetingActivity</string>
  1. Declare the Activity in your AndroidManifest.xml
  2. In your MyMeetingActivity class, extends MeetingActivity
  3. 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.