[docs] misc

This commit is contained in:
Salakar 2017-08-26 07:06:49 +01:00
parent fe0a98f1c8
commit 929352f8d3
1 changed files with 5 additions and 5 deletions

View File

@ -161,24 +161,24 @@ If you'd like to take advantage of Firebase's [Performance Monitoring](https://f
In your projects `android/build.gradle` file, add the plugin to your dependencies: In your projects `android/build.gradle` file, add the plugin to your dependencies:
``` ```groovy
dependencies { dependencies {
... // ...
classpath 'com.google.firebase:firebase-plugins:1.1.0' classpath 'com.google.firebase:firebase-plugins:1.1.0'
} }
``` ```
At the top of your `android/app/build.gradle` file, below other plugins, apply the `firebase-perf` plugin: At the top of your `android/app/build.gradle` file, below other plugins, apply the `firebase-perf` plugin:
``` ```groovy
apply plugin: "com.android.application" apply plugin: "com.android.application"
apply plugin: "com.google.firebase.firebase-perf" apply plugin: "com.google.firebase.firebase-perf"
``` ```
In the same file, add the `firebase-perf` module to your dependencies: In the same file, add the `firebase-perf` module to your dependencies:
``` ```groovy
dependencies { dependencies {
... // ...
compile "com.google.firebase:firebase-perf:11.0.0" compile "com.google.firebase:firebase-perf:11.0.0"
} }
``` ```