ios_dotnet_superuser
ios_dotnet_superuser

Reputation: 304

<FIRInstanceID/WARNING> Unable to generate key pair

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

Answers (1)

Wink
Wink

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

Related Questions