Open
Description
I am trying to have the user log in via facebook, I am passing in token data but I am not getting success or failure and firebase is not being updated. I am using latest v3 branch. Using Genymotion emulator with android 6.0.0.
const firestack = Firestack.initializeApp(env.firestack)
firestack.auth().signInWithCredential({
provider: 'facebook',
token: data.credentials.token
}).then((user) => {
//doesn't get called
}).catch((err) => {
//doesn't get called either
})