LoginSignup
1
0

More than 5 years have passed since last update.

AndroidでFCMとAuthenticationを使うときのメモ 2018/08

Last updated at Posted at 2018-08-16

はじめに

AndroidアプリにFirebaseのAuthentication実装していて後からFCMを追加したときにはまったのでその時の覚書です。

FCM追加前のbuild.gradle

build.gradle
        implementation "com.google.firebase:firebase-core:16.0.1"
        implementation "com.google.firebase:firebase-auth:16.0.1"

FCM追加後のbuild.gradle

build.gradle
        implementation "com.google.firebase:firebase-core:16.0.1"
        implementation "com.google.firebase:firebase-auth:16.0.3"
        implementation 'com.google.firebase:firebase-messaging:17.3.0'

バージョン揃えるとビルドエラーになってしまうので、全部最新にしたら無事動きました。

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