NoClassDefFoundError below SDK 21

后端 未结 3 1147
我寻月下人不归
我寻月下人不归 2020-11-30 02:47

I just experienced an awkward bug in my App.

On my Nexus 5/7, running android 5.0.1/5.0.2, everything works just fine. However if i try running the exact same code o

3条回答
  •  青春惊慌失措
    2020-11-30 03:19

    I resolved the issue by adding this to my Application Class.

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

    Seems to be neccessary for android versions prior 5.

提交回复
热议问题