From 929352f8d30e93ed90716157ce93e2334eaa383d Mon Sep 17 00:00:00 2001 From: Salakar Date: Sat, 26 Aug 2017 07:06:49 +0100 Subject: [PATCH] [docs] misc --- docs/installation-android.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/installation-android.md b/docs/installation-android.md index 4811d417..f26e5d77 100644 --- a/docs/installation-android.md +++ b/docs/installation-android.md @@ -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: -``` +```groovy dependencies { - ... + // ... 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: -``` +```groovy apply plugin: "com.android.application" apply plugin: "com.google.firebase.firebase-perf" ``` In the same file, add the `firebase-perf` module to your dependencies: -``` +```groovy dependencies { - ... + // ... compile "com.google.firebase:firebase-perf:11.0.0" } ```