Didn't find class “com.google.firebase.provider.FirebaseInitProvider”

前端 未结 9 1316
感动是毒
感动是毒 2021-02-14 06:05

Before, my program run well. But When I just updated my Android studio to the latest version (2.2 built on 15-sept-16), I am having the following error. When I built it, it says

9条回答
  •  温柔的废话
    2021-02-14 06:48

    app=>build.gradle

    android {
    .....
    defaultConfig {
    ......
     multiDexEnabled true//add this line
    }
    ......
    dependencies{
     compile 'com.android.support:multidex:1.0.1'//add this line
    }
    

    In manifest

    
     
    ...
    
    
    
    
    

提交回复
热议问题