feat: Separate Privacy Screen and Screenshot Protection #113
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Feature Implementation Overview: Privacy Screen and Screenshot Protection in Android
The
@capacitor-community/privacy-screen
plugin has been enhanced to offer separate controls for privacy screen and screenshot protection. This modification allows for finer control over app security features, aligning with varied application requirements and user settings. Issue-112Current Implementation:
Enhancements:
enablePrivacyScreen()
: Activates the privacy screen overlay without affecting screenshot capabilities.disablePrivacyScreen()
: Deactivates the privacy screen independently.enableScreenshotProtection()
: Activates screenshot protection without enabling the privacy screen.disableScreenshotProtection()
: Deactivates screenshot protection separately.Technical Details:
WindowManager.LayoutParams.FLAG_SECURE
just to handle/enable or disable screenshot and screen recording protection, providing robust security against unauthorized content capture.This approach ensures developers can tailor the app’s behavior more precisely, depending on the specific needs for privacy and security, enhancing the plugin's versatility and usability in security-sensitive applications.