「Android/crash/firebase」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→firebaseのcrashlytics導入) |
|||
行24: | 行24: | ||
// Add to the bottom of the file | // Add to the bottom of the file | ||
apply plugin: 'com.google.gms.google-services' | apply plugin: 'com.google.gms.google-services' | ||
+ | |||
+ | ==強制的にクラッシュさせる== | ||
+ | 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'
強制的にクラッシュさせる
https://firebase.google.com/docs/crashlytics/force-a-crash?authuser=0