Questions tagged [sendbird-ios]

7 questions
2
votes
0 answers

Sendbird: Group channel not created properly

I am using SendBird javascript SDK for chat and trying to create a group channel through the following code: export async function openOneToOneChannel(user1, user2) { try { if (!sb) { await createSBClient(user1.id); } let params…
2
votes
1 answer

SendBird: Search personal chat along with group chat

SendBird treats every channel as their GroupChannel. The 1:1 chat too is technically a GroupChannel with only two users (with isDistinct = true so it would return the personal chat when you attempt to create it again). My question is, how do I…
Sunil Chauhan
  • 2,074
  • 1
  • 15
  • 33
1
vote
1 answer

Sendbird SyncManager channel pagination issue

I am using Sendbird for chat messages in an native iOS app. They have an add-on SyncManager. Which caches the channel list and messages locally on the phone for offline support. I am trying to paginate the channel list using SyncManager's…
Sunil Chauhan
  • 2,074
  • 1
  • 15
  • 33
1
vote
1 answer

SendBird SyncManager: "recommended" way to clear the existing local database cache?

I am trying Sendbird for chat messages in an native iOS app. They have an add-on SyncManager. Which caches the channel list and messages locally on the phone for offline support. My app lets users logout of the app. At this time, I want to clear…
Sunil Chauhan
  • 2,074
  • 1
  • 15
  • 33
0
votes
1 answer

Sendbird v3 SDK iOS init handler not returned

When I call init on SBDMain, like: SBDMain.initWithApplicationId( getSendbirdAppID(), useCaching: false) { print("call back migration") } completionHandler: { unsafeError in print("call back handler") …
Fred Faust
  • 6,696
  • 4
  • 32
  • 55
0
votes
1 answer

Can't register for Sendbird push notifications in Swift

I have an iOS app in which I am using Sendbird successfully. Nevertheless, the functionality of receiving notifications when the app is running in background does not work. In fact, when I try to register the user for these notifications in the…
pepito
  • 433
  • 1
  • 3
  • 15
0
votes
1 answer

Sendbird video call Integration with iOS Swift

I am trying to integrate Sendbird with iOS in swift. Outgoing call is working fine for me. I am not getting any Push for incoming calls. neither of the delegate methods of cxproviderdelegate are not getting called. Can any one help me to understand…
Rishi Chaurasia
  • 520
  • 4
  • 18