react-native-image-crop-picker
react-native-image-crop-picker 集成到android,出現(xiàn)app打開就閃退的問題胃夏,Android Studio調(diào)試報錯如下
Unable to get provider android.support.v4.content.FileProvider
解決方法:
第一步:
將
node_modules/react-native-image-crop-picker/android/src/main/java/com/reactnative/ivpusic/imagepicker/PickerModule.java
中的import android.support.v4.content.FileProvider;
替換為import androidx.core.content.FileProvider;
第一步:
將
node_modules/react-native-image-crop-picker/android/src/main/AndroidManifest.xml
中的android:name="android.support.v4.content.FileProvider"
修改為android:name="androidx.core.content.FileProvider"
參考:https://github.com/ivpusic/react-native-image-crop-picker/issues/1071