Reputation: 9
I am trying to authenticate user using sendbird iOS SDK.
Here is the syntax :
SBDMain.connect(withUserId: "123456", completionHandler: { (user, error) in
})
it gives me an error :
Error Domain=Application ID not found. Code=800100 "(null)"
Error says application id is not configured properly but i have configured it correctly on AppDelegate
. I don't understand why I'm getting this kind of error.
Upvotes: 1
Views: 236
Reputation: 4552
I found solution. (I don't know actual reason why it happen but this issue occur may be of old version)
Do following Steps
1. Replace Your ApplicationID
with exist ApplicationID
in appDelegate
2. In PodFile
replace pod 'SendBirdSDK', '~> 3.0'
with pod 'SendBirdSDK'
3. Update Demo Project Pods
4. Try to login with 123456
Upvotes: 1