- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2018 01:24 AM
Hi All,
As a security measure, we want the below 2 things for mobile app(SNOW).
1. The user should not be able to copy/paste date to/from servicenow app to external content.
2. Taking screenshot should be disabled for the app.
Has anybody done anything similar?
Thanks.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2018 01:39 AM
I assuming that you are talking about the android Snow Application.
For that you have to add block of code in your apk file.
by adding FLAG_SECURE into your Activity as follows,
getWindow().setFlags(LayoutParams.FLAG_SECURE, LayoutParams.FLAG_SECURE);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2018 08:19 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2025 06:50 AM
Can you please list the steps to achieve this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2018 05:18 AM
Just wanted to share some results for those with similar issues.
I added two properties:
(glide.ui.m.clear_pasteboard_when_backgrounded and glide.ui.m.blur_ui_when_backgrounded)
and in the related list, I added Mobile, Mobile_pre_auth and mobile_post_auth.
Now, for Android, I am able to restrict copy/paste and taking screenshots.
Cheers!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2025 07:35 AM
Please list the steps to configure this