Skip to content

Instantly share code, notes, and snippets.

@louicoder
Created February 23, 2023 16:09
React native Firebase Error for push notifications ios
// ================================================
<< Error >>
APNS device token not set before retrieving FCM Token for Sender ID
<< Fix >>
Add a firebase.json file at the root and add the following
{
"react-native": {
"analytics_auto_collection_enabled": false,
"messaging_ios_auto_register_for_remote_messages": false
}
}
// ================================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment