找不到具有权限的提供者的元数据

Couldn't find meta-data for provider with authority

我已将 Snapchat 的创意工具包集成到我的 Android 应用程序中。处理后,我从服务器接收到字节数组形式的图像,我将其保存到磁盘,然后将文件发送到 Snapchat 的 Creative Kit,如下所示。

 private fun downloadImage(
    fileName: String,
    imageByteArray: ByteArray?): Uri? {
    val state = Environment.getExternalStorageState()

    if (Environment.MEDIA_MOUNTED == state) {
        val downloadDir = File(
            Environment.getExternalStorageDirectory(), context?.getString(R.string.app_name)
        )

        if (!downloadDir.isDirectory) {
            downloadDir.mkdirs()
        }

        val file = File(downloadDir, fileName)
        var ostream: FileOutputStream? = null
        try {
            ostream = FileOutputStream(file)
            ostream.write(imageByteArray)
            ostream.flush()
            ostream.close()
            }
        } catch (e: IOException) {
            e.printStackTrace()
        }

    val snapCreativeKitApi = SnapCreative.getApi(context!!)
    val snapMediaFactory = SnapCreative.getMediaFactory(context!!)
    lateinit var snapPhotoFile: SnapPhotoFile
    try {
        snapPhotoFile = snapMediaFactory.getSnapPhotoFromFile(file)
    } catch (e: SnapMediaSizeException) {
        return
    }
    val snapPhotoContent = SnapPhotoContent(snapPhotoFile)
    snapCreativeKitApi.send(snapPhotoContent)
    }
}

我还在清单文件中添加了provider,如下所示:

  <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="${applicationId}.provider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths_app" />
    </provider>

并且在 provider_paths_app.xml 中,我通过参考 this 答案尝试了所有可能的路径,其中 none 行得通。

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path
    name="My App Name"
    path="." />
</paths>

使用上述路径,出现以下错误。

Couldn't find meta-data for provider with authority my.package.name.fileprovider

我所要做的就是将这张图片发送到 Snapchat,但我无法弄清楚我做错了什么。任何帮助将不胜感激。

    <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="${applicationId}.fileprovider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/file_paths"></meta-data>
    </provider>

这是我的提供者声明,${applicationId}的值为"com.limxtop.research",请确保权限名称与以下代码相同。

            // Create the file where the photo should save.
            File file = null;
            try {
                file = createImageFile();
            } catch (IOException e) {
                break;
            }
            // The second parameter is the name of authorities.
            Uri uri = FileProvider.getUriForFile(this,
                    "com.limxtop.research.fileprovider", file);
            intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
            intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION
                    | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
            startActivityForResult(intent, fullSizeRequestCode);

所以,也许你的代码 post 这里不完整,你应该把 "my.package.name.fileprovider" 作为参数传递给那里。

将权限更改为唯一名称以解决类似

的问题

android:authorities="${applicationId}.myUniquefileprovider"

也在java代码中

首先,在manifest中的<application>标签下写入如下标签

 <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="${applicationId}.provider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/provider_paths" />
        </provider>

然后在res中创建一个xml文件夹,并创建一个名为:provider_paths.xml的文件 然后复制粘贴代码:

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

现在这是大多数开发人员犯错误的地方:在您的脚本中,使用以下内容创建您的文件:

FileProvider.getUriForFile(Objects.requireNonNull(getApplicationContext()),
                    BuildConfig.APPLICATION_ID + ".provider", file);

mImageFromCamera = FileProvider.getUriForFile(这个, BuildConfig.APPLICATION_ID + ".fileprovider", mImageFile); android:authorities="${applicationId}.文件提供者"

xml 和代码

中的权限必须相同

我刚刚从 android:authorities="${applicationId}.provider" 中删除了“$”,现在效果很好。

就我而言。

我有一个图书馆项目。我们称它为:LibApk

当我编写代码时:build.grale(app)

中的 applicationId“my.package.name”

构建时 gradle 告诉我:库项目无法设置 applicationId。

applicationId 在默认配置中设置为 'com.darcy.apkupdate'。

所以,我删除了 applicationId“my.package.name”。

然后,build.gradle看起来像这样:

但是我忘记更新使用 ${applicationId}

的 AndroidManifest.xml 文件

这就是问题所在!!!

所以我将变量改为常量。结果如下图所示:

在这之后,对我来说就可以了!

希望这对你有帮助...

它的文件提供者而不是提供者

android:authorities="${applicationId}.fileprovider"

{applicationId} == com.companyName.application 附加“.provider”

这将是 == com.example.test.provider

在xmlauthorities:com.example.test.provider

在 activity Uri mPath = FileProvider.getUriForFile(this, "com.example.example.provider", imageFile);

这里的问题是,您在清单中使用 class 名称 .provider 作为权限 并在 java 代码中使用 .fileprovider class 名称。

 <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="${applicationId}.provider"
        android:exported="false"
        android:grantUriPermissions="true">
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths_app" />
    </provider>



Couldn't find meta-data for provider with authority my.package.name.fileprovider

只需将 fileprovider 重命名为 provider

以我为例;

清单文件:

<provider
    android:name="androidx.core.content.FileProvider"
    android:authorities="${applicationId}.provider"
    android:exported="false"
    android:grantUriPermissions="true">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/provider_paths" />
</provider>

代码:

import androidx.multidex.BuildConfig // NOT DO THIS!!!

val uri = FileProvider.getUriForFile(this,
            BuildConfig.APPLICATION_ID+ ".provider", _tempFile)

异常:

java.lang.IllegalArgumentException: Couldn't find meta-data for provider with authority androidx.multidex.provider

不要使用androidx.multidex.BuildConfig,因为这个值不是我们应用的值:

//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//

package androidx.multidex;

public final class BuildConfig {
    public static final boolean DEBUG = false;
    public static final String APPLICATION_ID = "androidx.multidex";
    public static final String BUILD_TYPE = "release";
    public static final String FLAVOR = "";
    public static final int VERSION_CODE = -1;
    public static final String VERSION_NAME = "";

    public BuildConfig() {
    }
}

首先你使用

File(getExternalFilesDir(null),context?.getString(R.string.app_name));


而不是

Environment.getExternalStorageDirectory(), context?.getString(R.string.app_name) // this is deprecated in API29


然后使用这个

Uri contentUri = getUriForFile(getContext(), "com.mydomain.fileprovider", newFile);

更多帮助:File Provider Description

如果构建的后缀不同,进行这样的更改是有意义的。

FileProvider.getUriForFile(mContext.get(), BuildConfig.APPLICATION_ID + ".fileprovider", file)

你可以替换你的BuildConfig导入class文件名:

import androidx.multidex.BuildConfig;

与:

import com.yourAppName.BuildConfig;

这是因为权限名称不同

   <provider
        android:name="androidx.core.content.FileProvider"
        android:authorities="${applicationId}.provider"
        android:exported="false"
        android:grantUriPermissions="true"
        >
        <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths"
            />
    </provider>

 here Look     
      
      <pre>android:authorities="${applicationId}.provider" </pre>
           

这里权限名是你packagename.provider (com.example.app.provider)

        val uri: Uri? = FileProvider.getUriForFile(
        this.contexts,
        BuildConfig.APPLICATION_ID + ".provider",
        file
    )

每当我们复制粘贴代码时,权限可能会从一个来源更改为另一个来源。在 Whosebug 中,一些开发人员将清单 ${applicationId}.provider" 放在 uri 中,他们将 (.fileprovider) FileProvider.getUriForFile( this.contexts, BuildConfig.APPLICATION_ID + ".fileprovider", 文件 ) 这就是日志中显示的权限不同的问题

FileProvider.getUriForFile(this, "{yourPAckageName}.fileprovider",
                                file);

FileProvider.getUriForFile(Objects.requireNonNull(getApplicationContext()),
                    BuildConfig.APPLICATION_ID + ".provider", file);

我花了一天时间寻找解决方案。这部分非常重要。这救了我的命。

解决我的问题的是:

用这个替换你的路径应用程序文件: 查看文件根目录,我用我的应用程序包名称确定了路径,将 pkg 名称更改为你的。

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path
        name="files_root"
        path="Android/data/com.my.newproject4" />
    <external-path
        name="external_files"
        path="." />
</paths>

还有你的供应商 使用您的包名称而不是 ${applicationId}

跟我一样

<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.my.newproject4.provider"
android:exported="false"
android:grantUriPermissions="true">

<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths" />
</provider>

这就是我的工作方式 经过长时间的尝试和寻找,唯一的解决方案和方法 这就是问题所在

也许对某人有帮助 希望你好运