错误:找不到与给定名称匹配的资源(资源'值为' @ xml / provider_paths')

时间:2018-04-06 03:10:12

标签: android google-api android-fileprovider

我正在开发一个用于谷歌服务文本检测的应用程序,并遇到使用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>

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

错误:找不到与给定名称匹配的资源(在&#39;资源&#39;值为&#39; @ xml / provider_paths&#39;)。

出了什么问题?

1 个答案:

答案 0 :(得分:8)

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