使用信鴿推送,每每會出現註冊失敗的狀況,下面記錄下我總結的幾種狀況。android
1.MessageReceiver沒有寫,因爲官方文檔上缺這行代碼,不少人集成的時候會沒寫這個。建議參照官方Demo。
2.XGRemoteService沒有修改成當前包名。
3.若是使用的AndroidStudio,看一下AndroidStudio中的applicationId是否與包名相同。不一樣也會到致失敗。
4.`<activitysegmentfault
android:name="com.tencent.android.tpush.XGPushActivity" android:exported="false" android:theme="@android:style/Theme.Translucent"> <intent-filter> <!-- 若使用AndroidStudio,請設置android:name="android.intent.icon_notice" --> <action android:name="android.intent.action" /> </intent-filter> </activity>`
若是使用AndroidStudio這裏必定要改
5.最重要的固然仍是ACCESS_ID,ACCESS_KEY,這個必定要正確。前面幾點都是在這個正確的基礎上的。app