gpt4 book ai didi

android - java.lang.IllegalArgumentException : Failed to find configured root that contains "insert app directory path here" 异常

转载 作者:行者123 更新时间:2023-11-30 00:20:38 32 4
gpt4 key购买 nike

我正在打开相机拍摄图像,我关注了this tutorial .当我尝试为我的应用程序创建不同风格的构建配置时出现标题中所述的错误。

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

<?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>

我在 list 中设置如下 -

    <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\""
}

我正在这样的 Activity 中启动相机 -

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 属性值设置为文字字符串而不是资源字符串值时,相同的代码不会导致任何异常。

我不明白为什么会这样。

如果我能解释得更好,请告诉我。请帮助并提前致谢。

最佳答案

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

关于android - java.lang.IllegalArgumentException : Failed to find configured root that contains "insert app directory path here" 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46359074/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com