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

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'
}

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



    
        ...
    

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) 。

你可能感兴趣的:(Android,解错锦囊)