Corrected the apply location of plugin: 'com.google.gms.google-services' in docs (#3876)

This commit is contained in:
Anderson Addo
2020-07-04 15:11:17 -04:00
committed by GitHub
parent afcd79479b
commit 65042d08ed

View File

@@ -67,10 +67,11 @@ buildscript {
}
```
Lastly, execute the plugin by adding the following to the **very bottom** of your `/android/app/build.gradle` file:
Lastly, execute the plugin by adding the following to your `/android/app/build.gradle` file:
```groovy
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services' // <- Add this line
```
### 3. iOS Setup