Skip to content

Instantly share code, notes, and snippets.

@dkhmelenko
Created February 4, 2019 14:35
Show Gist options
  • Save dkhmelenko/7108c35216f3d774066ae26bdfa33166 to your computer and use it in GitHub Desktop.
Save dkhmelenko/7108c35216f3d774066ae26bdfa33166 to your computer and use it in GitHub Desktop.
fun handleSaveCredentialsResult(resultCode: Int, emitter: CompletableEmitter) {
if (resultCode == Activity.RESULT_OK) {
emitter.onComplete()
} else {
emitter.onError(Exception("Saving credentials failed: $resultCode"))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment