我尝试使用Parse back {4}应用程序通过this教程向我的应用发送推送通知。但是当我进入第3步时,他们会说在仪表板中编辑android推送通知设置,但我在仪表板中找不到此选项。
我不理解的另一件事是第1步的最后一部分,用我自己的代码更改红色代码。我应该将这个更改为什么?
<category android:name="**dominwong4.scm.back4apppushnotificationcloudcode**" />
来自此代码:
<!--
IMPORTANT: Change "YOUR_SENDER_ID" to your GCM Sender Id.
DON't DELETE the "id:"-->
<meta-data android:name="com.parse.push.gcm_sender_id"
android:value="id:966437188652" />
<service android:name="com.parse.PushService" />
<receiver android:name="com.parse.GcmBroadcastReceiver" android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="**dominwong4.scm.back4apppushnotificationcloudcode**" />
</intent-filter>
</receiver>
<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.OPEN" />
<action android:name="com.parse.push.intent.DELETE" />
</intent-filter>
</receiver>
答案 0 :(得分:0)
您可以将其更改为应用程序的包名称。该页面顶部有一个链接到github项目。
如果你查看那里,你会看到代码
package dominwong4.scm.back4apppushnotificationcloudcode;
说明假设您在创建项目时使用了标识自己应用的包名称
无法帮助使用仪表板...... Haven未使用Back4App
答案 1 :(得分:0)
关于推送通知设置,在对Back4App的网站进行更改后,按照以下步骤进行定位:
登录Back4App帐户后,点击&#34;功能&#34;在你的AppName下面。然后,您将搜索&#34; Android推送通知&#34;并单击&#34; Server&#34;。 这应该会显示Android的推送通知设置。
检查在线聊天也是个好主意,看起来非常有用。