This plugin configures iOS and Android native files to support react-native-image-crop-picker
in Expo prebuild projects.
yarn add expo-plugin-image-crop-picker
# or
npm install expo-plugin-image-crop-picker
Add to your app.config.js
or app.json
:
{
"expo": {
"name": "MyApp",
"slug": "my-app",
"plugins": [
"expo-plugin-image-crop-picker"
]
}
}
- Adds
NSCameraUsageDescription
,NSPhotoLibraryUsageDescription
, andNSMicrophoneUsageDescription
to Info.plist.
- Sets
compileSdkVersion
andtargetSdkVersion
to 33. - Adds camera permission and optional camera hardware features.
- Enables vector drawable support.
- Adds Maven repositories.
yarn build
Pull requests are welcome! Please follow the existing coding style and add JSDoc to any new functions.
MIT