When I call init on SBDMain, like:
SBDMain.initWithApplicationId(
getSendbirdAppID(),
useCaching: false) {
print("call back migration")
} completionHandler: { unsafeError in
print("call back handler")
}
Neither the completion or migration handlers are called. When I switch useCaching
to true the completion handler is called.
Is there something else I have to do to get the async caller to come back at the call site?
This is Sendbird iOS SDK v3.1.18
Thanks for reading!