我在Android应用程序中实现了推送通知。当应用程序打开并且通知显示在我的设备顶部时,它可以很好地工作。(当应用程序在后台时它也可以工作)。问题是应用程序关闭时。通知未到达,屏幕上出现崩溃消息。 这是崩溃的代码片段
FacebookSdk.sdkInitialize(getApplicationContext());
Profile userProfile = Profile.getCurrentProfile();
String user_id = userProfile.getId();
userProfile
中的问题是null。应用程序关闭时为什么它为null?我该如何解决?