Last active
December 27, 2017 08:53
-
-
Save shihabmi7/37edaa45950ee47761715e207cd3bf60 to your computer and use it in GitHub Desktop.
Prevent application content from screenshot or screen recording
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if(android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.HONEYCOMB) { | |
| getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment