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