1
我需要製作一個包含推送警報的應用程序,但目標設備沒有實施Google Play服務,並且它們沒有連接到Google帳戶。解析服務需要Google帳戶嗎?
所以我試圖找到解決方案,我終於找到了解析服務。
但是,當我試圖連接我的應用程序來分析,他們需要像
<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="{PACKAGE_NAME}" />
</intent-filter>
</receiver>
接收這樣是不是這些接收器用於GCM? 然後解析服務是否使用GCM,目標設備是否需要Google帳戶或Google Play服務?