Parse 服务需要 Google 帐户吗?

Do Parse service requires Google Account?

我需要制作一个包含推送提醒的应用程序,但目标设备未实现 Google Play 服务,并且它们未连接到 Google 帐户。

所以我想办法解决,终于找到了Parse服务。

但是当我尝试将我的应用程序连接到 Parse 时,他们需要这样的接收器

<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吗? 那么 Parse 服务是否使用 GCM 并且目标设备需要 Google 帐户或 Google 播放服务?

没有

来自official guide

The Parse Android SDK chooses a reasonable default configuration so that you do not have to worry about GCM registration ids, sender ids, or API keys. In particular, the SDK will automatically register your app for push at startup time using Parse's sender ID (1076345567071) and will store the resulting registration ID in the deviceToken field of the app's current ParseInstallation.