ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

android – 如果使用推送服务关闭应用程序,应用程序崩溃:parse.com

2019-07-28 10:29:29  阅读:174  来源: 互联网

标签:parse-platform android push-notification push


我将清单中的接收器替换为我的:

<receiver android:name="com.myparse.app.MyReceiver"
    android:exported="false">
  <intent-filter>
    <action android:name="com.parse.push.intent.RECEIVE" />
    <action android:name="com.parse.push.intent.DELETE" />
    <action android:name="com.parse.push.intent.OPEN" />
    </intent-filter>
</receiver>

这是我的MyReceiver:

public class MyReceiver extends ParsePushBroadcastReceiver {

    @Override
    protected void onPushReceive(Context mContext, Intent intent) {
//      super.onPushReceive(arg0, arg1);

        if (intent.hasExtra("com.parse.Data")){
            String jsonString=intent.getExtras().getString("com.parse.Data");
            //-------------
    }

   public void onPushOpen(Context context, Intent intent) {

        //To track "App Opens"
        ParseAnalytics.trackAppOpenedInBackground(intent);

        //Here is data you sent
        Log.i("", intent.getExtras().getString( "com.parse.Data" ));

        Intent i = new Intent(context, MainActivity.class);
        i.putExtras(intent.getExtras());
        i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(i);
    }
}

一切正常
但是,如果我关闭应用程序,然后发送推送通知 – >该应用程序崩溃与以下日志:

11-09 21:13:11.621: E/com.parse.PushService(23087): The Parse push service cannot start because Parse.initialize has not yet been called. If you call Parse.initialize from an Activity's onCreate, that call should instead be in the Application.onCreate. Be sure your Application class is registered in your AndroidManifest.xml with the android:name property of your <application> tag.
11-09 21:13:11.626: E/AndroidRuntime(23087): FATAL EXCEPTION: main
11-09 21:13:11.626: E/AndroidRuntime(23087): java.lang.RuntimeException: Unable to start service com.parse.PushService@4203adb0 with Intent { act=com.google.android.c2dm.intent.RECEIVE flg=0x10 pkg=com.myparse.app cmp=com.myparse.app/com.parse.PushService (has extras) }: java.lang.RuntimeException: applicationContext is null. You must call Parse.initialize(context, applicationId, clientKey) before using the Parse library.
11-09 21:13:11.626: E/AndroidRuntime(23087):    at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:2782)
11-09 21:13:11.626: E/AndroidRuntime(23087):    at dalvik.system.NativeStart.main(Native Method)
11-09 21:13:11.626: E/AndroidRuntime(23087): Caused by: java.lang.RuntimeException: applicationContext is null. You must call Parse.initialize(context, applicationId, clientKey) before using the Parse library.
11-09 21:13:11.626: E/AndroidRuntime(23087):    at com.parse.Parse.checkContext(Parse.java:606)

解决方法:

我遇到了同样的问题,并通过添加解决了它
android:name =“.MyApplication”到Android清单中的应用程序标记,然后创建一个如下所示的新类:

public class MyApplication extends Application 
{
    @Override
    public void onCreate() { 
         Parse.initialize(getApplicationContext(), myAppId, myClientKey);
    }
}

以前我将Parse初始化调用放在我的主Activity的onCreate()方法中,但正如您发布的错误消息所示,Android生命周期的细微之处意味着您无法做到这一点.

标签:parse-platform,android,push-notification,push
来源: https://codeday.me/bug/20190728/1560725.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有