java.lang.IllegalArgumentException:无法找到包含“在此处插入应用程序目录路径”的已配置根目录

时间:2017-09-22 07:25:12

标签: android android-fileprovider android-flavors

我打开相机捕捉图像,然后我跟着this tutorial。当我尝试为我的应用程序创建不同的风格构建配置时,标题中出现错误。

这是我的元数据xml资源文件,名为 file_paths ,用于文件提供程序路径配置 -

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="my_images" path="@string/images_file_path"/>
</paths>

我在清单中设置如下 -

    <provider
        android:name="android.support.v4.content.FileProvider"
        android:authorities="@string/authority"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths" />
    </provider>

我正在根据这样的构建配置从gradle构建文件中实例化名为“images_file_path”的字符串资源 -

productFlavors {
    dev {
        resValue "string", "images_file_path","\"Android/data/com.swinguff.android.dev/files/Pictures\""
    }
    prod {
        resValue "string", "images_file_path","\"Android/data/com.swinguff.android/files/Pictures\""
    }

我正在我的活动中启动相机 -

File photoFile = null;
        try {
            photoFile = createImageFile();
            if (photoFile != null) {
            /*Following line is throwing the error */
            profilePicUri =
            FileProvider.getUriForFile(ApplicationContext.getAppContext(),
                        BuildConfig.AUTHORITY,
                        photoFile);
                launchcamera();
                //Log.d("Musik","camera bug take photo"+photoFile+" "+mPhotoPathForCamera+" "+profilePicUri);
            }
        } catch (Exception ex) {
            // Error occurred while creating the File
            Log.d("CAMERA_BUG","exception "+ex.getMessage()+"\n"+BuildConfig.APPLICATION_ID+"\n"+BuildConfig.AUTHORITY
                +"\n"+getString(R.string.images_file_path));
            Util.showSnackbar(xRoot,getString(R.string.camera__open_error));

        }

private File createImageFile() throws IOException {
    // Create an image file name
    String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
    String imageFileName = "JPEG_" + timeStamp + "_";
    File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
    File image = File.createTempFile(
            imageFileName,  /* prefix */
            ".jpg",         /* suffix */
            storageDir      /* directory */
    );

    // Save a file: path for use with ACTION_VIEW intents
    npath = image.getAbsolutePath();
    return image;
}

当我将上面的元数据xml资源中的 path 属性值设置为文字字符串而不是资源字符串值时,相同的代码不会导致任何异常。

我不明白为什么会这样。

如果我能更好地解释,请告诉我。请提前帮助和谢谢。

2 个答案:

答案 0 :(得分:1)

<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="."/>
</paths>

看到这样编辑你的问题将解决你的路径

答案 1 :(得分:0)

作为Miller在评论中指出解决方案是将元数据xml资源文件 file_paths.xml 分别放入其对应的每个构建中(dev / res / xml或prod / res / xml)文件夹并直接在xml文件中设置相应的路径值,而不是字符串资源 images_file_path