From 8c9b00f92d3ad8c56e3fb15ce44830892989fca9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Sep 2025 20:02:14 +0000 Subject: [PATCH 1/2] Bump com.android.application from 8.12.1 to 8.13.0 Bumps com.android.application from 8.12.1 to 8.13.0. --- updated-dependencies: - dependency-name: com.android.application dependency-version: 8.13.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 774307c03..8c00b7176 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,7 +6,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.12.1" apply false + id("com.android.application") version "8.13.0" apply false id("org.jetbrains.kotlin.android") version "2.2.10" apply false id("androidx.navigation.safeargs.kotlin") version "2.9.3" apply false id("com.starter.easylauncher") version "6.4.1" apply false From cc8cfae42b0dae284c12e85cd5902201188855d8 Mon Sep 17 00:00:00 2001 From: denbond7 Date: Mon, 8 Sep 2025 08:21:52 +0300 Subject: [PATCH 2/2] wip --- .../ComposeScreenReplyWithGmailApiSignatureFlowTest.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/FlowCrypt/src/androidTest/java/com/flowcrypt/email/ui/gmailapi/ComposeScreenReplyWithGmailApiSignatureFlowTest.kt b/FlowCrypt/src/androidTest/java/com/flowcrypt/email/ui/gmailapi/ComposeScreenReplyWithGmailApiSignatureFlowTest.kt index 80e506be0..8da6494dc 100644 --- a/FlowCrypt/src/androidTest/java/com/flowcrypt/email/ui/gmailapi/ComposeScreenReplyWithGmailApiSignatureFlowTest.kt +++ b/FlowCrypt/src/androidTest/java/com/flowcrypt/email/ui/gmailapi/ComposeScreenReplyWithGmailApiSignatureFlowTest.kt @@ -11,6 +11,7 @@ import androidx.test.espresso.action.ViewActions.click import androidx.test.espresso.contrib.RecyclerViewActions.actionOnItemAtPosition import androidx.test.espresso.matcher.ViewMatchers.withId import androidx.test.ext.junit.runners.AndroidJUnit4 +import androidx.test.filters.FlakyTest import androidx.test.filters.MediumTest import com.flowcrypt.email.R import com.flowcrypt.email.TestConstants @@ -25,6 +26,7 @@ import com.flowcrypt.email.ui.base.BaseComposeGmailApiSignatureFlowTest import okhttp3.mockwebserver.Dispatcher import okhttp3.mockwebserver.MockResponse import okhttp3.mockwebserver.RecordedRequest +import org.junit.Ignore import org.junit.Rule import org.junit.Test import org.junit.rules.RuleChain @@ -65,6 +67,8 @@ class ComposeScreenReplyWithGmailApiSignatureFlowTest : .around(ScreenshotTestRule()) @Test + @FlakyTest + @Ignore("Temporary disabled as flaky") fun testAddingSignatureAfterStart() { //need to wait while the app loads the messages list waitForObjectWithText(SUBJECT_EXISTING_STANDARD, TimeUnit.SECONDS.toMillis(10)) @@ -88,4 +92,4 @@ class ComposeScreenReplyWithGmailApiSignatureFlowTest : doBaseChecking() } -} \ No newline at end of file +}