You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
private fun loginWithFacebookAccessToken(accessToken: AccessToken) {
promiseOnUi {
mvpView?.showLoggingProgress()
} then {
loginManager.loginWithFacebook(accessToken).get() //Call from this side
} alwaysUi {
mvpView?.hideLoggingProgress()
} successUi {
mvpView?.navigateToMainScreen()
} failUi { error ->
mvpView?.showMessage(error.localizedMessage)
}
}
To this function
fun loginWithFacebook(fbAccessToken: AccessToken): Promise<Unit, Exception> {
ti { "KOVENANT In Function" }
return task {
ti { "KOVENANT In task" }
} then {
ti { "KOVENANT In then" }
}
}
Hi
I have a problem in the last function, my call is block in the task { .. }
My application is deploy on a SAMSUNG S4 MINI API 19 Version 4.4.2
And the logcat only show : "KOVENANT In Function"
The text was updated successfully, but these errors were encountered:
It Work on :
-ZTE ZTE BLADE A512 (Android 6.0.1, API 23)
-HUAWEI HUAWEI VNS-L21 (Android 6.0, API 23)
but not on :
-Samsung GT-I9195 (Android 4.4.2, API 19)
Call from this function
To this function
Hi
I have a problem in the last function, my call is block in the
task { .. }
My application is deploy on a SAMSUNG S4 MINI API 19 Version 4.4.2
And the logcat only show : "KOVENANT In Function"
The text was updated successfully, but these errors were encountered: