「Android/crash/firebase」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→強制的にクラッシュさせる) |
|||
行26: | 行26: | ||
==強制的にクラッシュさせる== | ==強制的にクラッシュさせる== | ||
+ | http://yuyakaido.hatenablog.com/entry/2014/12/30/161157 | ||
+ | |||
https://firebase.google.com/docs/crashlytics/force-a-crash?authuser=0 | https://firebase.google.com/docs/crashlytics/force-a-crash?authuser=0 |
2018年9月19日 (水) 12:14時点における版
(レポート表示未確認)
firebaseのcrashlytics導入
chromeブラウザで実行する
- firebaseにログイン
- firebaseでプロジェクトを作成
- 品質(crashlytics)を選択
- andoridを選択し対象となるpackageidを入れる
- google-service.jsonDLボタンが出るのでダウンロードしandroidプロジェクト直下のappの下に置く
- 以下2つのbuild.gradle を追加
プロジェクト直下の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