hey I have solution about this > >how to stop screenshots and recording in your app >>paste this code and the screenshots and recording stops in your app
Asked
Active
Viewed 482 times
-2

Vishal Kardam
- 24
- 1
- 9
1 Answers
0
>/android/app/src/main/java/com/{Project_Name}/MainActivity.java
>>import android.view.WindowManager;
>>>@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
}

Vishal Kardam
- 24
- 1
- 9