
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
react-native-nj-screenshotcatch
Advanced tools
$ npm install react-native-screenshotcatch --save
RN version >= 0.60
autolink
RN Version < 0.60
pod 'RNScreenshotcatch', :path => '../node_modules/react-native-screenshotcatch'
android/app/src/main/java/[...]/MainActivity.javaimport com.dreamser.screenshotcatch.RNScreenshotcatchPackage; to the imports at the top of the filenew RNScreenshotcatchPackage() to the list returned by the getPackages() methodandroid/settings.gradle:
include ':react-native-screenshotcatch'
project(':react-native-screenshotcatch').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-screenshotcatch/android')
android/app/build.gradle:
compile project(':react-native-screenshotcatch')
// MainActivity.java
import com.dreamser.screenshotcatch.RNScreenshotcatchModule;
public class MainActivity extends ReactActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ScreenShotShareModule.initScreenShotShareSDK(this); // here
}
// ...other code
}
add
import RNScreenshotcatchUtil from 'react-native-screenshotcatch';
export default class Root extends React.Component{
componentWillMount(){
ScreenShotShareUtil.startListener(res => {
if(res && res.code === 200){
// success
}else{
// fail
}
})
}
componentWillUnmount(){
ScreenShotShareUtil.stopListener()
}
}
Judge Android phone has NavigationBar
const hasBar = await ScreenShotShareUtil.hasNavigationBar()
FAQs
A ReactNative Tool for catch Screen Shot Event
The npm package react-native-nj-screenshotcatch receives a total of 0 weekly downloads. As such, react-native-nj-screenshotcatch popularity was classified as not popular.
We found that react-native-nj-screenshotcatch demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.