Update SDK to 1.0.0-3005-5a722fd2 (#5860)

Co-authored-by: bw-ghapp[bot] <178206702+bw-ghapp[bot]@users.noreply.github.com>
Co-authored-by: Carlos Gonçalves <cgoncalves@bitwarden.com>
This commit is contained in:
bw-ghapp[bot] 2025-09-16 17:13:26 +00:00 committed by GitHub
parent f954b0b941
commit 0cbce39499
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 7 additions and 1 deletions

View File

@ -1292,6 +1292,7 @@ class VaultSdkSourceTest {
val mockAutofillView = Fido2CredentialAutofillView(
credentialId = byteArrayOf(0),
cipherId = "mockCipherId",
hasCounter = false,
rpId = "mockRpId",
userNameForUi = "mockUserNameForUi",
userHandle = "mockUserHandle".toByteArray(),
@ -1341,6 +1342,7 @@ class VaultSdkSourceTest {
rpId = "mockRpId",
userNameForUi = "mockUserNameForUi",
userHandle = "mockUserHandle".toByteArray(),
hasCounter = false,
)
val autofillViews = listOf(mockAutofillView)

View File

@ -110,12 +110,14 @@ fun createMockFido2CredentialListView(
userHandle: String = "mockUserHandle-$number",
userName: String = "mockUserName-$number",
userDisplayName: String = "mockUserDisplayName-$number",
hasCounter: Boolean = false,
): Fido2CredentialListView = Fido2CredentialListView(
credentialId = credentialId,
rpId = rpId,
userHandle = userHandle,
userName = userName,
userDisplayName = userDisplayName,
counter = if (hasCounter) "$number" else "0",
)
/**

View File

@ -166,6 +166,7 @@ fun createMockFido2CredentialAutofillView(
rpId = rpId,
userNameForUi = "mockUserNameForUi-$number",
userHandle = "mockUserHandle-$number".encodeToByteArray(),
hasCounter = false,
)
/**

View File

@ -34,4 +34,5 @@ fun createMockFido2CredentialAutofillView(
rpId = "mockRelyingPartyId-$number",
userNameForUi = "mockUserNameForUi-$number",
userHandle = "mockUserHandle-$number".toByteArray(),
hasCounter = false,
)

View File

@ -30,7 +30,7 @@ androidxRoom = "2.7.2"
androidxSecurityCrypto = "1.1.0"
androidxSplash = "1.1.0-rc01"
androidxWork = "2.10.3"
bitwardenSdk = "1.0.0-2944-8447df0c"
bitwardenSdk = "1.0.0-3005-5a722fd2"
crashlytics = "3.0.6"
detekt = "1.23.8"
firebaseBom = "34.2.0"