skip to Main Content

Can't access OAuth Access token method while doing Github Login with Firebase

According to Firebase documentation to get OAuth access token on successful login, we can get it from the getCredential() method like: authResult.getCredential().getAccessToken() Code: According to firebase: firebaseAuth .startActivityForSignInWithProvider(/* activity= */ this, provider.build()) .addOnSuccessListener( new OnSuccessListener<AuthResult>() { @Override public void onSuccess(AuthResult…

VIEW QUESTION

Mongodb – Mongo DB Realm + Kotlin Coroutines – Cannot find a version of 'org.jetbrains.kotlinx:kotlinx-coroutines-core' that satisfies the version constraints

I'm trying to use Mongo DB Realm in my Android app. I've added those two dependencies: implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt" implementation "io.realm.kotlin:library-sync:1.0.2" Along with the plugin: id 'io.realm.kotlin' and id 'io.realm.kotlin' version '1.0.2' apply false But I'm getting this strange error, and…

VIEW QUESTION
Back To Top
Search