After expanding more than a hour on problem, I found that I have to do some modification in MyApplication Class like this:public class MyApplication extends Application { @Override public void onCreate() { super.onCreate(); // register with Active Android ActiveAndroid.initialize(this); } @Override protected void attachBaseContext(Context base) { super.attachBaseContext(base); MultiDex.install(this); }}我已经覆盖了 attachbaseContext 方法,现在一切正常.I have overriden the attachbaseContext method and all works fine now. 这篇关于Android - 应用程序在 Pre-Lollipop 设备上崩溃的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-17 05:39