2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Firebase Performance Monitoringを開発中のビルド時には無効にしておきたい

Last updated at Posted at 2019-04-06

実際にユーザー環境でのパフォーマンスを確認するためにFirebase Performance Monitoringを導入しているアプリはそれなりにあるのではないかと思います。

でも、開発中に有効にしているとビルドが遅くなりますよね。アプリによるけど、2〜3分くらいかかることありますよね。

はずかしい話ローカルでコメントアウトして開発してたんですよね。こんな感じで

//apply plugin: 'com.google.firebase.firebase-perf'

導入したときにはなかった設定だったと思うのですが、簡単に有効・無効を切り替えることができるようです。
Firebase Performance Monitoring SDK を無効にする

Firebase Gradle Plugins version 1.2.0から追加された設定のようです。

gradle.propertiesには無効と設定しておいて

gradle.properties
firebasePerformanceInstrumentationEnabled=false

リリースするアプリをビルドする際などはコマンドライン引数で上書きすればいいみたい

 ./gradlew -PfirebasePerformanceInstrumentationEnabled=true assembleRelease
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?