Skip to content

Commit a648a5b

Browse files
Bump com.google.apis:google-api-services-gmail from v1-rev20240520-2.0.0 to v1-rev20250331-2.0.0 (#3030)
* Bump com.google.apis:google-api-services-gmail Bumps com.google.apis:google-api-services-gmail from v1-rev20240520-2.0.0 to v1-rev20250331-2.0.0. --- updated-dependencies: - dependency-name: com.google.apis:google-api-services-gmail dependency-version: v1-rev20250331-2.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * wip --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: denbond7 <denbond7@gmail.com>
1 parent 9ab7dfa commit a648a5b

2 files changed

Lines changed: 8 additions & 9 deletions

File tree

FlowCrypt/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ dependencies {
472472
implementation("com.google.android.flexbox:flexbox:3.0.0")
473473
implementation("com.google.code.gson:gson:2.13.1")
474474
implementation("com.google.api-client:google-api-client-android:2.7.2")
475-
implementation("com.google.apis:google-api-services-gmail:v1-rev20240520-2.0.0")
475+
implementation("com.google.apis:google-api-services-gmail:v1-rev20250331-2.0.0")
476476
//ACRA needs the following dependency to use a custom report sender
477477
implementation("com.google.auto.service:auto-service-annotations:1.1.1")
478478

FlowCrypt/src/androidTest/java/com/flowcrypt/email/ui/UpdatePrivateKeyWithPassPhraseInDatabaseFlowTest.kt

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -148,16 +148,15 @@ class UpdatePrivateKeyWithPassPhraseInDatabaseFlowTest : BaseTest() {
148148
onView(withId(R.id.buttonPositiveAction))
149149
.perform(scrollTo(), click())
150150

151-
waitForObjectWithText(getResString(R.string.key_details), TimeUnit.SECONDS.toMillis(60))
151+
val dateAfterUpdating = getResString(
152+
R.string.template_modified,
153+
dateFormat.format(Date(requireNotNull(updatedKeyDetails.lastModified)))
154+
)
155+
waitForObjectWithText(dateAfterUpdating, TimeUnit.SECONDS.toMillis(60))
152156

153-
//do checks after update
157+
//do checks after updating
154158
onView(
155-
withText(
156-
getResString(
157-
R.string.template_modified,
158-
dateFormat.format(Date(requireNotNull(updatedKeyDetails.lastModified)))
159-
)
160-
)
159+
withText(dateAfterUpdating)
161160
).check(matches(isDisplayed()))
162161

163162
val existingRecipientWithPubKeysAfterUpdate = runBlocking {

0 commit comments

Comments
 (0)