FirebaseCrashlyticsをAndroidアプリに実装するにあたり、
公式ドキュメントを参考に進めていたのだが、、、
app/build.gradle
plugins {
id 'com.android.application'
// Make sure that you have the Google services Gradle plugin
id 'com.google.gms.google-services'
// Add the Crashlytics Gradle plugin
id 'com.google.firebase.crashlytics'
...
}
これをどこに書けばいいのかわからなかった。
調べるとどうやら
app/build.gradle
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
を書き換えた状態らしい。
このpluginsの書き方は新しい書き方らしく、
https://plugins.gradle.org/
このリポジトリで利用可能である必要が必要があるそうだ。