@serjpas/with-rn-image-crop-picker
v0.3.0
Published
An Expo config plugin for painless setup of `react-native-image-crop-picker` (fork from https://github.com/mwegener-com/with-rn-image-crop-picker)
Downloads
1
Readme
with-rn-image-crop-picker
Expo config plugin for react-native-image-crop-picker.
About
This plugin adds the required attributes to the specific files as mentioned in the docs.
iOS
InfoPlist:
NSPhotoLibraryUsageDescription
NSCameraUsageDescription
NSMicrophoneUsageDescription
Android
AndroidManifest:
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES"/>
Project build.gradle:
maven { url 'https://maven.google.com' }
maven { url "https://www.jitpack.io" }
App build.gradle vectorDrawables.useSupportLibrary = true
Important note
Currently there is no full support for front-camera on android.
Requires Expo Dev Client in half-managed workflow. Learn more about:
- Expo Managed Workflow in 2021: part 1, part 2
- Expo dev-client docs
- Expo config plugin
Usage
- Install with Expo
$ expo install with-rn-image-crop-picker expo-build-properties
- Check your app.json. It should look like this:
"plugins": [
"with-rn-image-crop-picker"
],
[
"expo-build-properties",
{
"android": {
"compileSdkVersion": 33,
"targetSdkVersion": 33
}
}
]
- Rebuild your app
$ expo prebuild
$ expo run:ios --device
$ expo run:android --device
Configuartion
You can configure the iOS messages by adding the following props to your app.json file:
- PhotoLibraryUsageDescription
- CameraUsageDescription
- MicrophoneUsageDescription
Example:
"plugins": [
[
"with-rn-image-crop-picker",
{
"PhotoLibraryUsageDescription": "Allow app XYZ to access your photos",
"CameraUsageDescription": "Allow app XYZ to access your camera",
"MicrophoneUsageDescription": "Allow app XYZ to access your microphone"
}
]
]
Contributing
Contributions are very welcome!