欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Didn't find class "com.google.firebase.provider.FirebaseInitProvider"

程序员文章站 2022-06-01 09:54:02
...

java.lang.ClassNotFoundException: Didn’t find class “com.google.firebase.provider.FirebaseInitProvider” on path: DexPathList[[zip file “/data/app/com.XXX-2.apk”],nativeLibraryDirectories=[/data/app-lib/com.XXX-2, /system/lib]]

使用Multidex解决问题,根据自己的情况使用如下两个方法。

如果您的 minSdkVersion 设置为 21 或更高值,您只需在模块级 build.gradle 文件中将 multiDexEnabled 设置为 true。

android {
    defaultConfig {
        ...
        minSdkVersion 21 
        targetSdkVersion 27
        multiDexEnabled true
    }
    ...
}

如果您的 minSdkVersion 设置为 20 或更低值,则您必须按如下方式使用

android {
    defaultConfig {
        ...
        minSdkVersion 15 
        targetSdkVersion 25
        multiDexEnabled true
    }
    ...
}

dependencies {
  compile 'com.android.support:multidex:1.0.3'
}

接下来就是编辑清单文件,

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="xxx">
    <application
        ...
        android:name=".MyApplication">
        ...
    </application>
</manifest>

MyApplication.class

import android.content.Context;
import android.support.multidex.MultiDex;
import android.support.multidex.MultiDexApplication;

/**
 * @author 小红妹
 * @date 2019/3/5.
 * @describe 注意:MyApplication继承于MultiDexApplication
 * @copyright 
 */
public class MyApplication extends MultiDexApplication {

    @Override
    protected void attachBaseContext(Context base) {
        super.attachBaseContext(base);
        MultiDex.install(this);
    }
}

这个方法同样也能解决如下DEX文件中容纳请求类方法超额的错误。

Error: Cannot fit requested classes in a single dex file (# methods: 85583 > 65536) 。