Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
react-native-image-selector
Advanced tools
This module is alternative version of https://github.com/react-native-image-picker/react-native-image-picker
The only change could be iOS (for iOS 14 limited selection issues).
So I created Image Viewer View Controller which only shows selected images (if user selected limited permission) only for iOS.
npm
$ npm install react-native-image-selector
yarn
$ yarn add react-native-image-selector
lerna
$ lerna add react-native-image-selector
$ lerna add react-native-image-selector --scope="@some/package"
iOS/info.plist
<key>PHPhotoLibraryPreventAutomaticLimitedAccessAlert</key>
<false/>
<key>NSCameraUsageDescription</key>
<string>카메라 권한을 얻겠습니다.</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>사진을 가져오겠습니다.</string>
PHPhotoLibraryPreventAutomaticLimitedAccessAlert
// you can turn on this to if it is true, the permission alert will not be showed up every time when you request or check photo authorization.
android/AndroidManifest.xml
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
import ImageSelector, {
ImageSelectorOptions,
} from 'react-native-image-selector';
// ...
const options: ImageSelectorOptions = {
// import Options
title: '사진 선택',
cancelButtonTitle: '취소',
takePhotoButtonTitle: '사진 촬영',
chooseFromLibraryButtonTitle: '앨범에서 가져오기',
storageOptions: {
skipBackup: true,
path: 'images',
},
permissionDenied: {
title: '권한 설정',
text: "이 기능을 이용하시려면 권한을 '허용'으로 변경해주세요.",
reTryTitle: '변경하러가기',
okTitle: '닫기',
},
// iOS Only
iOSGridNumber: 4,
// iOS Only, should be upper than iOS 15.0 for 'pageSheet'
// default value is 'overFullScreen'
iOSModalPresentationStyle: 'pageSheet',
};
ImageSelector.launchPicker(options, (error, response) => {
if (error) {
if (error.code === ImageSelectorErrorType.CAMERA_PERMISSION_DENIED) {
console.error('camera permission denied');
}
return;
}
if (response) {
if (response.didCancel) {
console.log('USER CANCELED');
return;
}
setResponse(response);
}
});
$ yarn bootstrap
$ cd example
$ yarn start
$ yarn ios
$ yarn android
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT
FAQs
image picker native module
The npm package react-native-image-selector receives a total of 4 weekly downloads. As such, react-native-image-selector popularity was classified as not popular.
We found that react-native-image-selector demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.