我是Android应用程序开发的新手。我使用parse.com作为后端,我已按照教程https://www.parse.com/tutorials/android-push-notifications设置推送通知。但是,每当我使用解析通知控制台(在网站上)或从Android设备发送通知时,我都不会收到任何通知。其次,在解析通知控制台上,每个通知在发送推送时显示0。当我在app的当前ParseInstallation的deviceToken字段中检查注册ID时,它是空的。甚至GCMSenderID都是空的。所以我怀疑我的应用程序没有正确注册,但installID字段不为空。我已在清单文件中添加了所有权限和凭据。
请帮帮我。这将是一个很大的帮助。谢谢:))
这是我的清单文件:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!--
IMPORTANT: If you change the package name of this sample app, change
"com.parse.tutorials.pushnotifications.permission.C2D_MESSAGE" in the
lines below to match the new package name.
-->
<permission
android:name="com.parse.swipeit.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="com.parse.swipeit.permission.C2D_MESSAGE" />
<application
android:name="com.parse.swipeit.Application"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.parse.swipeit.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="com.parse.PushService" />
<receiver android:name="com.parse.ParseBroadcastReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.USER_PRESENT" />
</intent-filter>
</receiver>
<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" />
<!--
IMPORTANT: If you change the package name of this sample app,
change "com.parse.tutorials.pushnotifications" in the lines
below to match the new package name.
-->
<category android:name="com.parse.swipeit" />
</intent-filter>
</receiver>
</application>
答案 0 :(得分:0)
这部分很重要。
<!-- IMPORTANT: Change "com.parse.starter" to match your app's package
name. -->
您需要使用Google开发者控制台为您启用Google Cloud Messaging API。为此,您需要使用自己唯一的有效包名称(仅属于您而不属于其他人)。