react-native-image-crop-picker
react-native-image-crop-picker copied to clipboard
Android install guide still up to date?
Version
- react-native-image-crop-picker v0.39.0
- react-native v0.71.7
Platform
- Android
Question
After upgraded my Project to the latest react native version i only realized afterwards that i have accidentally removed some of the android setup for this module. These ones:
allprojects {
repositories {
mavenLocal()
jcenter()
maven { url "$rootDir/../node_modules/react-native/android" }
// ADD THIS
maven { url 'https://maven.google.com' }
// ADD THIS
maven { url "https://www.jitpack.io" }
}
}
android {
...
defaultConfig {
...
vectorDrawables.useSupportLibrary = true
...
}
...
}
However the module was still working without issues. So far i've only tested it with API level 33 (Samsung A52 & emulator) and API 24 (emulator). So i was wondering if these are actually still required or if it could be removed nowadays?
Any updates on this?
Would be great to know if these configs are outdated and can be removed. Anyone?