Couldn't find meta-data for provider with authority com.xxx.xxx.fileprovider
程序员文章站
2022-07-15 13:09:33
...
在启动相机的时候,闪退报错
猜测是provider的问题,后来发现是在Manifest中
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.xxx.xxx.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
在复制粘贴的时候!忘记改authorities了!
改成自己项目packname注意大小写就好了