Android NullPointerException in Instrumentation.execStartActivity

前端 未结 2 2033
半阙折子戏
半阙折子戏 2021-02-05 04:44

I keep getting the bellow exception from some users:

java.lang.NullPointerException
    at android.app.Instrumentation.execStartActivity(Instrumentation.java:141         


        
2条回答
  •  自闭症患者
    2021-02-05 05:06

    in my case crash in Instrumentation.java

    line 1581,

    android.util.SeempLog.record_str(377, intent.toString());

    intent is null then NPE

    not sure how to fix this

提交回复
热议问题