1

要求された資格情報が複数ある場合に、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
        }
    }
4

1 に答える 1