在Android应用程序中添加多个文件提供程序

时间:2018-11-26 14:02:01

标签: android android-manifest aar android-fileprovider

伙计们,我正在开发需要外部应用程序依赖项(.aar文件)的android应用程序 库应用程序有其自己的文件提供程序,而我的应用程序也有其自己的文件。

当我将库作为单独的应用程序运行时,

库运行良好,但是当我将其包含在应用程序中时,相机功能将无法正常运行。我收到以下错误

java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.res.XmlResourceParser android.content.pm.ProviderInfo.loadXmlMetaData(android.content.pm.PackageManager, java.lang.String)' on a null object reference

遵循应用程序的清单文件

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

以下是lib模块的清单文件

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

应用程序和lib模块都有不同的包名,如何将这2个文件提供程序添加到应用程序中 我也尝试使用多个文件提供程序,但是在应用程序编译时出现XML解析错误。

android:authorities="${applicationId}.provider;com.ma.bot.provider"

如何解决这个问题。

1 个答案:

答案 0 :(得分:3)

我在此链接上找到了解决方案 Possible to use multiple authorities with FileProvider?

基本上的问题是我的库和应用程序具有相同的名称android.support.v4.content.FileProvider,因此它在清单合并中发生冲突,为避免这种情况,我需要对扩展文件提供程序的空类进行去污并使用它的提供程序名称

<provider
            android:name="com.MAG.MAGFileProvider"
            android:authorities="${applicationId}.provider;"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>

并声明这样的类

import android.support.v4.content.FileProvider;
public class MAGFileProvider extends FileProvider
{
    //we extend fileprovider to stop collision with chatbot library file provider
    //this class is empty and used in manifest
}