Skip to content Skip to sidebar Skip to footer

Android Studio 3.0 Firebase

I have been using firebase authentication without any problem with compile SDK version 26.01 of Android Studio 2.3.3 until yesterday. However, since I updated to 3.0 yesterday, eve

Solution 1:

I was getting the same error, and like you, I am not specifying Twitter as one of the available sign-in providers.

I was able to eliminate the error by adding the Twitter SDK library to the app dependencies:

implementation ("com.twitter.sdk.android:twitter-core:3.0.0@aar") {
    transitive = true
}

Post a Comment for "Android Studio 3.0 Firebase"