Android/crash/firebase
提供: 初心者エンジニアの簡易メモ
firebaseのcrashlytics導入
chromeブラウザで実行する
- firebaseにログイン
- firebaseでプロジェクトを作成
- 品質(crashlytics)を選択
- andoridを選択し対象となるpackageidを入れる
- google-service.jsonDLボタンが出るのでダウンロードしandroidプロジェクト直下のappの下に置く
- 以下2つのbuild.gradle を追加
- android端末で動作させると、firebaseのプロジェクトに入れるようになる。
- ”既にfabricCrashlyticsSDKが入っているか?”の選択があるので、はい、いいえをそれぞれ選択。
プロジェクト直下のbuild.gradle
buildscript { dependencies { // Add this line classpath 'com.google.gms:google-services:4.0.1' } }
app/build.gradle
dependencies { // Add this line implementation 'com.google.firebase:firebase-core:16.0.1' } ... // Add to the bottom of the file apply plugin: 'com.google.gms.google-services'
強制的にクラッシュさせる
http://yuyakaido.hatenablog.com/entry/2014/12/30/161157
https://firebase.google.com/docs/crashlytics/force-a-crash?authuser=0