Android- App未从解析平台接收推送通知 [英] Android- App does not receive push notifications from parse platform

查看:88
本文介绍了Android- App未从解析平台接收推送通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用解析平台,但是我无法在设备android上收到任何通知.

I am using from parse platform but I can't receive any notification on my device android.

这是我的manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="lib.finder.ir.deletme">

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.VIBRATE" />

    <application
        android:name=".App"
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">

        <service
            android:name="com.parse.fcm.ParseFirebaseInstanceIdService"
            android:exported="true">
            <intent-filter>
                <action android:name="com.google.firebase.INSTANCE_ID_EVENT" />
            </intent-filter>
        </service>

        <service
            android:name="com.parse.fcm.ParseFirebaseMessagingService"
            android:exported="false">
            <intent-filter>
                <action android:name="com.google.firebase.MESSAGING_EVENT" />
            </intent-filter>
        </service>

        <receiver
            android:name="com.parse.ParsePushBroadcastReceiver"
            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>

        <meta-data
            android:name="com.parse.push.notification_icon"
            android:resource="@drawable/ic_message" />

        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>


    </application>

</manifest>

我的App.java:

public class App extends Application {
    @Override
    public void onCreate() {
        super.onCreate();


        // Use for monitoring Parse OkHttp traffic
        // Can be Level.BASIC, Level.HEADERS, or Level.BODY
        // See http://square.github.io/okhttp/3.x/logging-interceptor/ to see the options.
        OkHttpClient.Builder builder = new OkHttpClient.Builder();
        HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor();
        httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
        builder.networkInterceptors().add(httpLoggingInterceptor);


        Parse.initialize(new Parse.Configuration.Builder(this)
                .applicationId("1")
                // if defined
                .clientKey("1")
                .server("http://1:80/parse/")
                .clientBuilder(builder)
                .build()
        );

        Parse.setLogLevel(Parse.LOG_LEVEL_DEBUG);

        // Save the current Installation to Parse.
        ParseInstallation.getCurrentInstallation().saveInBackground();

        ParsePush.subscribeInBackground("", new SaveCallback() {
            @Override
            public void done(ParseException e) {
                if (e == null) {
                    Log.i("log", "A: successfully subscribed to the broadcast channel.");
                } else {
                    Log.i("log", "B: failed to subscribe for push", e);
                }
            }
        });

    }
}

GetPush.java:

public class GetPush extends ParsePushBroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        super.onReceive(context, intent);
    }

    @Override
    protected void onPushReceive(Context context, Intent intent) {
        super.onPushReceive(context, intent);
    }

    @Override
    protected void onPushOpen(Context context, Intent intent) {
        super.onPushOpen(context, intent);
    }
}

然后我得到google-services.json然后添加到我的项目中.

And I get google-services.json then add to my project.

{
  "project_info": {
    "project_number": "344518768459",
    "firebase_url": "https://parsetest-f7e60.firebaseio.com",
    "project_id": "parsetest-f7e60",
    "storage_bucket": "parsetest-f7e60.appspot.com"
  },
  "client": [
    {
      "client_info": {
        "mobilesdk_app_id": "1:344518768459:android:a36a6a64540561a3",
        "android_client_info": {
          "package_name": "lib.finder.ir.deletme"
        }
      },
      "oauth_client": [
        {
          "client_id": "344518768459-09g2pnfhscijt01e4ee8hr02mqaovurh.apps.googleusercontent.com",
          "client_type": 3
        }
      ],
      "api_key": [
        {
          "current_key": "AIzaSyBZg-xc8vq5Eu2OJQIaDTbe91W5l5XA1eA"
        }
      ],
      "services": {
        "analytics_service": {
          "status": 1
        },
        "appinvite_service": {
          "status": 1,
          "other_platform_oauth_client": []
        },
        "ads_service": {
          "status": 2
        }
      }
    }
  ],
  "configuration_version": "1"
}

推荐答案

从下面的服务中删除android:exported="false".

     <service
        android:name="com.parse.fcm.ParseFirebaseMessagingService"
        android:exported="false">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT" />
        </intent-filter>
    </service>

可能来自Firebase配置设置.

Might be from Firebase configuration setup.

也许您应该再次阅读本教程. https://docs.parseplatform.org/tutorials/android-push-notifications/ 验证您所做的一切都很好.由于您的代码很干净,我无法弄清楚出了什么问题

Maybe you should go through the tutorial again. https://docs.parseplatform.org/tutorials/android-push-notifications/ To verify that you doing everything fine. As your code is clean, I can't figure out what is went wrong

这篇关于Android- App未从解析平台接收推送通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆