
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
@capacitor-community/privacy-screen
Advanced tools
Capacitor plugin that protects your app from displaying a screenshot in Recents screen/App Switcher.
@capacitor-community/privacy-screen
Capacitor Privacy Screen Plugin
⚡️ Capacitor plugin that protects your app from displaying a screenshot in Recents screen/App Switcher.
On Android, this plugin sets the FLAG_SECURE flag to treat the content of the window as secure, preventing it from appearing in screenshots or from being viewed on non-secure displays.
On iOS, this plugin hides the webview window when the app is no longer active and loses focus (UIApplicationWillResignActiveNotification) so that a gray screen is shown instead. It also prevents screenshots (a black screen will be captured).
Disabling screenshots can interfere with plugins that hide the WebView like the Camera plugin. To avoid issues call disable
before using a plugin and then enable
after you are finished.
Maintainer | GitHub | Social |
---|---|---|
Robin Genz | robingenz | @robin_genz |
npm install @capacitor-community/privacy-screen
npx cap sync
These configuration values are available:
Prop | Type | Description | Default | Since |
---|---|---|---|---|
enable | boolean | Configure whether the plugin should be enabled from startup. Only available for Android and iOS. | true | |
imageName | string | Configure whether the plugin should display a custom image from assets instead of a default background gray for the privacy screen. Only available for iOS. | "" | |
contentMode | 'center' | 'scaleToFill' | 'scaleAspectFit' | 'scaleAspectFill' | Configure the content mode of displayed image. Only available for iOS. | "center" | |
preventScreenshots | boolean | Configure whether the plugin should prevent screenshots if enabled. Only available for iOS. | true | 5.2.0 |
In capacitor.config.json
:
{
"plugins": {
"PrivacyScreen": {
"enable": true,
"imageName": "Splashscreen",
"contentMode": "scaleAspectFit",
"preventScreenshots": false
}
}
}
In capacitor.config.ts
:
/// <reference types="@capacitor-community/privacy-screen" />
import { CapacitorConfig } from '@capacitor/cli';
const config: CapacitorConfig = {
plugins: {
PrivacyScreen: {
enable: true,
imageName: "Splashscreen",
contentMode: "scaleAspectFit",
preventScreenshots: false,
},
},
};
export default config;
A working example can be found here: robingenz/capacitor-plugin-demo
The plugin only needs to be installed. The protection is enabled by default.
However, you have the option to enable/disable the protection:
import { PrivacyScreen } from '@capacitor-community/privacy-screen';
const enable = async () => {
await PrivacyScreen.enable();
};
const disable = async () => {
await PrivacyScreen.disable();
};
enable()
disable()
addListener('screenRecordingStarted', ...)
addListener('screenRecordingStopped', ...)
addListener('screenshotTaken', ...)
removeAllListeners()
enable() => Promise<void>
Enables the privacy screen protection.
Only available for Android and iOS.
Since: 1.1.0
disable() => Promise<void>
Disables the privacy screen protection.
Only available for Android and iOS.
Since: 1.1.0
addListener(eventName: 'screenRecordingStarted', listenerFunc: () => void) => Promise<PluginListenerHandle>
Called when the screen recording is started.
Only available on iOS for now.
Param | Type |
---|---|
eventName | 'screenRecordingStarted' |
listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
Since: 3.0.2
addListener(eventName: 'screenRecordingStopped', listenerFunc: () => void) => Promise<PluginListenerHandle>
Called when the screen recording is stopped.
Only available on iOS for now.
Param | Type |
---|---|
eventName | 'screenRecordingStopped' |
listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
Since: 3.0.2
addListener(eventName: 'screenshotTaken', listenerFunc: () => void) => Promise<PluginListenerHandle>
Called when the screenshot is taken.
Only available on iOS for now.
Param | Type |
---|---|
eventName | 'screenshotTaken' |
listenerFunc | () => void |
Returns: Promise<PluginListenerHandle>
Since: 3.2.0
removeAllListeners() => Promise<void>
Remove all listeners for this plugin.
Since: 3.0.2
Prop | Type |
---|---|
remove | () => Promise<void> |
See CHANGELOG.md.
See LICENSE.
FAQs
Capacitor plugin that protects your app from displaying a screenshot in Recents screen/App Switcher.
We found that @capacitor-community/privacy-screen demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 42 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.