quickblox-android-sdk: Cant set notification to FCM
Hello there. Im trying to use qb notifications , but i have problem . Im using sdk 3.3.4 reading from this link to quickblox_developers in documentation i see that we need set QBNotificationChannel for FCM. But we can set only GCM because
public enum QBNotificationChannel {
GCM("gcm"),
APNS("apns"),
APNS_VOIP("apns_voip"),
EMAIL("email"),
PULL("pull");
private String caption;
private QBNotificationChannel(String caption) {
this.caption = caption;
}
public String toString() {
return this.caption;
}
public String getCaption() {
return this.caption;
}
public void setCaption(String caption) {
this.caption = caption;
}
}
dont have FCM. Can any explaine what im doing wrong ? In quickblox admin panel also i dont see settings for FCM , only for GCM. AutoSubscription not working for GCM/FCM. Listener not working. Please any help ? Regards, Peter p.s. sorry for my bad english
About this issue
- Original URL
- State: closed
- Created 7 years ago
- Comments: 17 (5 by maintainers)
There was temporarily problem with pushes on shared server, sorry about that.