Skip to content

Instantly share code, notes, and snippets.

@oliverspryn
Last active November 12, 2021 13:41
Show Gist options
  • Save oliverspryn/4c993b2c0841f0b25a27c96808bbc39c to your computer and use it in GitHub Desktop.
Save oliverspryn/4c993b2c0841f0b25a27c96808bbc39c to your computer and use it in GitHub Desktop.
An activity which sets the security flag for release builds
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
if (BuildConfig.BUILD_TYPE == "release") {
window.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