Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
react-native-screenshot-aware
Advanced tools
React Native module for real-time screenshot detection on Android and iOS
yarn add react-native-screenshot-aware
or
npm install react-native-screenshot-aware
DETECT_SCREEN_CAPTURE
permission introduced in Android 14To use the screenshot detection feature on Android, you need to add the following permission to your AndroidManifest.xml
file:
<uses-permission android:name="android.permission.DETECT_SCREEN_CAPTURE" />
Note: Callbacks will never be triggered on devices running Android versions below 14. This is due to the reliance on the new
DETECT_SCREEN_CAPTURE
permission and APIs introduced in Android 14, which are not available in earlier versions.
Note: The decision to support only Android 14+ is based on the introduction of new, dedicated screenshot detection APIs. These APIs offer improved performance and respect user privacy better than previous methods. For more details, see the Android 14 screenshot detection documentation.
useScreenshotAware(callback)
This hook allows you to detect when a screenshot is taken on the device. It takes a callback function as an argument, which will be executed whenever a screenshot event is detected.
callback
(function): A function to be called when a screenshot is detected. This function does not take any arguments.import { useScreenshotAware } from 'react-native-screenshot-aware';
useScreenshotAware(() => {
console.log('A screenshot was taken!');
});
addListener(callback)
This function allows you to add a listener for the screenshot event. It takes a callback function as an argument, which will be executed whenever a screenshot event is detected.
callback
(function): A function to be called when a screenshot is detected. This function does not take any arguments.import ScreenshotAware from 'react-native-screenshot-aware';
useEffect(() => {
const listener = ScreenshotAware.addListener(() => {
console.log('A screenshot was taken!');
});
return () => {
listener.remove();
}
}, [])
removeAllListeners()
This function allows you to remove all listeners for the screenshot event.
import ScreenshotAware from 'react-native-screenshot-aware';
function removeScreenshotListeners() {
ScreenshotAware.removeAllListeners();
}
jest.mock('react-native-screenshot-aware', () => ({
useScreenshotAware: jest.fn(),
addListener: jest.fn().mockReturnValue({
remove: jest.fn(),
}),
removeAllListeners: jest.fn(),
}));
We welcome contributions! Please see our Contributing Guide for more details.
This project is licensed under the MIT License - see the LICENSE file for details.
If you like this project, please consider supporting it by giving it a ⭐️ on GitHub!
FAQs
React Native module for real-time screenshot detection on Android and iOS
The npm package react-native-screenshot-aware receives a total of 1,147 weekly downloads. As such, react-native-screenshot-aware popularity was classified as popular.
We found that react-native-screenshot-aware demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.