NPE在crashlytics中仅针对Android O及更高版本进行了报告。我只是在onCreate方法中使用startForegroundService和服务startForground进行了NPE操作。
在crashlytics中,它发生在startForeground(NOTIFICATION_ID_TOOLBAR, mNotification);
@Override
public void onCreate() {
super.onCreate();
buildNotification();
startForeground(NOTIFICATION_ID_TOOLBAR, mNotification);
}
无法创建服务ToolbarService:java.lang.NullPointerException:尝试从空对象引用上的字段'int com.android.server.am.UidRecord.curProcState'中读取
答案 0 :(得分:0)
可能mNotification
的值为null
。您需要分析代码以找出原因和时间。该代码段旨在简短地执行任何分析。