Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions src/integration-with-systems/mobile-plugins/firebase/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,30 @@ You must provide the plugin configuration file as settings in the Service Studio

1. (Optional) If you want to use different configurations for each environment, repeat steps 2 to 6 for each environment. For details on pointing the mobile application to the correct configuration files in each environment, see [Override Mobile Extensibility Configurations](../../../deploying-apps/override-extensibility-configurations.md).

Note that, when configured for different environments, the source should be changed to the corresponding environment file, while the "target" should remain unchanged. Below is an example for the Dev environment, where we just change “www/**google-services-dev.json**” and “www/**GoogleService-Info-dev.plist**” in the "src".

![Shows the process of adding multiple Firebase configuration files for different environments in Service Studio](images/firebase-multiple-configurations-ss.png "Multiple Firebase Configurations in Service Studio")

```JSON
{
"resources": {
"android": {
"AndroidResource": {
"src": "www/google-services-dev.json",
"target": "app/google-services.json"
}
},
"ios": {
"IosResource": {
"src": "www/GoogleService-Info-dev.plist",
"target": "GoogleService-Info.plist"
}
}
}
}

```

### Additional setup for the Dynamic Links plugin

The Firebase Dynamic Links Plugin requires the following additional setup steps to work correctly:
Expand Down