Pin Bitwarden SDK to 0.3.1-20231102.172014-25 (#200)

This commit is contained in:
Brian Yencho 2023-11-02 15:15:26 -05:00 committed by Álison Fernandes
parent 139568be2f
commit 949bb4ad5a
3 changed files with 3 additions and 1 deletions

View file

@ -40,6 +40,7 @@ fun SyncResponseJson.Cipher.toEncryptedSdkCipher(): Cipher =
organizationId = organizationId,
folderId = folderId,
collectionIds = collectionIds.orEmpty(),
key = null,
name = name.orEmpty(),
notes = notes,
type = type.toSdkCipherType(),

View file

@ -26,6 +26,7 @@ fun createMockSdkCipher(number: Int): Cipher =
organizationId = "mockOrganizationId-$number",
folderId = "mockFolderId-$number",
collectionIds = listOf("mockCollectionId-$number"),
key = null,
name = "mockName-$number",
notes = "mockNotes-$number",
type = CipherType.LOGIN,

View file

@ -23,7 +23,7 @@ androidxRoom = "2.5.2"
androidxSplash = "1.1.0-alpha02"
# Once the app and SDK reach a critical point of completeness we should begin fixing the version
# here (BIT-311).
bitwardenSdk = "0.3.1-SNAPSHOT"
bitwardenSdk = "0.3.1-20231102.172014-25"
detekt = "1.23.1"
firebaseBom = "32.3.1"
glide = "4.15.1"