Edit this page
Learn how to create or use a Google Service Account Key for sending Android Notifications using FCM V1.
Here are the steps to configure a new Google Service Account Key in EAS for sending Android Notifications using FCM V1.
1
Create a new Firebase project for your app in the Firebase Console. If you already have a Firebase project for your app, continue to the next step.
2
In the Firebase console, open Project settings > Service accounts for your project.
3
Click Generate New Private Key, then confirm by clicking Generate Key. Securely store the JSON file containing the private key.
4
Upload the JSON file to EAS and configure it for sending Android notifications. This can be done using EAS CLI or in Expo dashboard.
eas credentials
Android
> production
> Google Service Account
Manage your Google Service Account Key for Push Notifications (FCM V1)
Set up a Google Service Account Key for Push Notifications (FCM V1)
> Upload a new service account key
Note: Add the JSON file to your version source control's ignore file (for example, .gitignore) to avoid committing it to your repository since it contains sensitive data.
5
Configure the google-services.json file in your project. Download it from the Firebase Console and place it at the root of your project directory. If you're using version control, add it to your ignore file (for example, .gitignore) as it contains sensitive data.
Note: You can skip this step if google-services.json has already been set up.
In app.json, add expo.android.googleServicesFile
with its value as the path of the google-services.json.
{
"expo": {
%%placeholder-start%%...%%placeholder-end%%
"android": {
%%placeholder-start%%...%%placeholder-end%%
"googleServicesFile": "./path/to/google-services.json"
}
}
6
You're all set! You can now send notifications to Android devices via Expo Push Notifications using the FCM V1 protocol.
1
Open the IAM Admin page in Google Cloud Console. In the Permissions tab, locate the Principal you intend to modify and click the pencil icon for Edit Principal.
2
Click Add Role and select the Firebase Messaging API Admin role from the dropdown. Click Save.
3
You have to specify to EAS which JSON credential file to use for sending FCM V1 notifications, using EAS CLI or in Expo dashboard. You can upload a new JSON file or select a previously uploaded file.
eas credentials
Android
> production
> Google Service Account
Manage your Google Service Account Key for Push Notifications (FCM V1)
Set up a Google Service Account Key for Push Notifications (FCM V1)
> Upload a new service account key
Note: Add the JSON file to your version source control's ignore file (for example, .gitignore) to avoid committing it to your repository since it contains sensitive data.
4
Configure the google-services.json file in your project. Download it from the Firebase Console and place it at the root of your project directory. If you're using version control, add it to your ignore file (for example, .gitignore) as it contains sensitive data.
Note: You can skip this step if google-services.json has already been set up.
In app.json, add expo.android.googleServicesFile
with its value as the path of the google-services.json.
{
"expo": {
%%placeholder-start%%...%%placeholder-end%%
"android": {
%%placeholder-start%%...%%placeholder-end%% "googleServicesFile": "./path/to/google-services.json"
}
}
}
5
You're all set! You can now send notifications to Android devices via Expo Push Notifications using the FCM V1 protocol.