Parse platform 无法在分析时创建访问群体

Parse platform 无法在分析时创建访问群体,parse-platform,push-notification,google-cloud-messaging,parse-android-sdk,Parse Platform,Push Notification,Google Cloud Messaging,Parse Android Sdk,我正在尝试让我的android应用程序设置通过解析发送推送通知 build.gradle compile 'com.parse:parse-android:1.13.0' Application.java //in onCreate Parse.initialize(this, "appId", "clientKey"); ParseInstallation.getCurrentInstallation().saveInBackground(); AndroidManifest.xm

我正在尝试让我的android应用程序设置通过解析发送推送通知

build.gradle

 compile 'com.parse:parse-android:1.13.0'
Application.java

 //in onCreate
 Parse.initialize(this, "appId", "clientKey");
 ParseInstallation.getCurrentInstallation().saveInBackground();
AndroidManifest.xml

 <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.ParsePushBroadcastReceiver"
        android:exported="false">
     <intent-filter>
         <action android:name="com.parse.push.intent.RECEIVE" />
         <action android:name="com.parse.push.intent.DELETE" />
         <action android:name="com.parse.push.intent.OPEN" />              
     </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" />
            <category android:name="MY_APP_ID" />
      </intent-filter>
</receiver>

在使用这些更改启动我的应用程序后,我可以在Parse dashboard上看到正在创建的安装对象

现在,当我尝试通过仪表板发送推送消息,并使用Android平台创建受众时,它会说,“此活动的收件人数量不能为空。”

我错过了什么


编辑1:我可以通过REST api发送推送。仍然无法通过web控制台发送推送。

我已将此问题提交到Facebook开发者页面。以下是我从Facebook工程团队收到的回复:

这是一个已知的问题,新仪表板中的收件人数量很少。不幸的是,工程团队没有计划在新的仪表板中解决这个错误。请使用旧的仪表板发送这些推送通知