React Native 报错 provider,亲测有效!
1、Suggestion: add ‘tools:replace=“android:authorities”’ to element at AndroidManifest.xml:50:7-59:18 to override
2、Suggestion: add ‘tools:replace=“android:resource”’ to element at AndroidManifest.xml:57:12-59:52 to override.
React Native 项目引入了react-native-image-picker;项目中用到了App在线升级;这两个模块都会涉及到读写存储卡的操作。
在android 7.0以后android.os.FileUriExposedException: file:///storage/emulated/0/类似这样的错误(关于这个问题,不在这里做详细说明,网上有解决方法)。
第三方库和和本地的provider冲突 导致了我们最开始的问题,话不多说,直接给出解决方法:在react native项目的android文件夹下的AndroidManifest.xml进行如下修改:
<provider
tools:replace=“android:authorities” (这句加上)
android:name=“android.support.v4.content.FileProvider”
android:authorities=“com.***.yyjia.fileprovider”
android:exported=“false”
android:grantUriPermissions=“true”>
tools:replace=“android:resource” (这句加上)
android:name=“android.support.FILE_PROVIDER_PATHS”
android:resource="@xml/file_paths" />
以上就可以解决多个provider冲突的问题。