Android : app loading library at runtime on Lollipop but not IceCreamSandwich

后端 未结 4 683
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-05 11:10

I\'m currently developping an Android app using Android Studio. Currently, the app is launching perfectly on Lollipop devices, but crashes at launch due to a ClassNotF

4条回答
  •  醉话见心
    2020-12-05 11:41

    I forgot to add this line right after the super call in the onCreate() method of my custom application class :

     MultiDex.install(getBaseContext());
    

    Thanks Kane for the solution !

提交回复
热议问题