Twitter provider in the AuthUI class of Firebase Android

0

Hi, I'm implementing authentication with Firebase UI in my app. I try to call the Twitter provider but I am noticing that my AuthUI class does not contain this provider, it only contains:

public static final String EMAIL_PROVIDER = "email";

/**
 * Provider identifier for Google, for use with {@link SignInIntentBuilder#setProviders}.
 */
public static final String GOOGLE_PROVIDER = "google";

/**
 * Provider identifier for Facebook, for use with {@link SignInIntentBuilder#setProviders}.
 */
public static final String FACEBOOK_PROVIDER = "facebook";    

How can I get my AuthUI class to implement the Twitter provider? Thanks

    
asked by Djya Web 28.06.2017 в 12:37
source

1 answer

0

RESOLVED: the problem was in the dependency version 'com.firebaseui: firebase-ui-auth: 1.1.1' previously had version 0.4.1. The 1.1.1 requires

maven {             url ' link '         }

in the project gradle

    
answered by 28.06.2017 / 16:33
source