LoginSignup
3
1

More than 3 years have passed since last update.

react-native-firebase analytics デバッグ手順

Posted at

image.png

firebase analyticsにdebugモードが存在します。
いつも忘れてしまうのでまとめます。

デバッグモードの有効化

iOS

Xcodeのコマンドライン引数に以下を追加する。 チェックをONにしてビルドする。

-FIRDebugEnabled

無効にするときは以下を追加。

-FIRDebugDisabled

Android

# Debug On
adb shell setprop debug.firebase.analytics.app <package_name>

# Debug Off
adb shell setprop debug.firebase.analytics.app .none.


公式ドキュメントが正なので正確な情報は以下をご参照ください。
https://firebase.google.com/docs/analytics/debugview?hl=ja

image.png

3
1
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
3
1