Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update intro.md #430

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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