欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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注意大小写就好了

相关标签: Android Android