要求された資格情報が複数ある場合に、Smart Lock 成功バナーを強制的に表示する方法はありますか?
つまり、
Credentials.getClient(context)
.request(credentialRequest)
.addOnCompleteListener { task ->
if(task.successful) {
logInWithCredential(...)
return;
// for this part, blue banner is shown as normal
}
if(task.exception == CommonStatusCodes.RESOLUTION_REQUIRED) {
// request user to choose credential
// after a credential is chosen, blue banner is not shown
}
}