Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

android: set the FLAG_SECURE flag preventing screenshots #1684

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## [Unreleased]
- Android: prevent app window from appearing in screenshots or from being viewed on non-secure displays

## 4.32.0 [2022-03-16]
- Bundle BitBox02 firmware version v9.10.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
import android.os.Handler;
import android.os.Message;
import android.os.Bundle;
import android.view.WindowManager;
import android.webkit.CookieManager;
import android.webkit.JavascriptInterface;
import android.webkit.MimeTypeMap;
Expand Down Expand Up @@ -102,7 +103,10 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Util.log("lifecycle: onCreate");

getSupportActionBar().hide(); // hide title bar with app name.
// Hide title bar with app name.
getSupportActionBar().hide();
// Treat the content of the window as secure, preventing it from appearing in screenshots or from being viewed on non-secure displays.
getWindow().setFlags(WindowManager.LayoutParams.FLAG_SECURE, WindowManager.LayoutParams.FLAG_SECURE);
setContentView(R.layout.activity_main);
final WebView vw = (WebView)findViewById(R.id.vw);
// For onramp iframe'd widgets like MoonPay.
Expand Down