Error:No resource found that matches the given name (at 'resource' with value '@xml/provider_paths')

Error:No resource found that matches the given name (at 'resource' with value '@xml/provider_paths')

我正在开发用于 google 服务文本检测的应用程序,遇到使用 File_PROVIDER 共享文件的问题。

AndroidManifest.xml:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="myPackageFoo">

<uses-feature android:name="android.hardware.camera" />

<uses-permission android:name="android.permission.CAMERA" />

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
    <meta-data
            android:name="com.google.android.nearby.messages.API_KEY"
            android:value="@string/API_KEY" />
    <meta-data
            android:name="com.google.android.gms.vision.DEPENDENCIES"
            android:value="ocr" />
    <activity android:name=".MainActivity" android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>

            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
    <provider
            android:name="android.support.v4.content.FileProvider"
            android:authorities="myPackageFoo.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
        <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths" />
    </provider>
</application>

对于res/xml/provider_paths.xml:

<paths>
<files-path path="images/" name="myimages" />
<external-path name="download" path="download/"/>
</paths>

但是我总是遇到这个编译错误:

错误:找不到与给定名称匹配的资源(在 'resource' 处,值为“@xml/provider_paths”)。

出了什么问题?

我只是在同一个问题上花了很长时间。 有些人建议拼写错误(那里没有拼写错误)有些人提到了其他可能性,例如错误的文件夹或修改 config.xml 或检查 sdk 版本的建议技术.... 我缺少的是 "provider_paths.xml" Build Action 设置为 Content 而不是 AndroidResource 因此它在编译期间从未被复制因此它丢失并且从未找到...... 我认为这是同样的问题。