Reputation: 304
i have a strange message in console from FirebaseSDK iOS.
After this message :
STOP!! Will reset deviceID from memory. Failed to fetch default token Error Domain=com.firebase.iid Code=6 "(null)"
STOP!! Will reset deviceID from memory. Failed to fetch default token Error Domain=com.firebase.iid Code=6 "(null)"
Failed to fetch default token Error Domain=com.firebase.iid Code=6 "(null)" Failed to retrieve the default GCM token after 5 retries
I already enable Keychain capabilities to on in the project.
Upvotes: 1
Views: 1112
Reputation: 187
This simply means that your Keychain Sharing is off by default in your Capabilities.
Simply go to your Target Project in the navigator and then in the capabilities tab scroll down to Keychain Sharing and switch it to ON, this should fix it for you.
Upvotes: 2