Skip to content

Commit 885c811

Browse files
authored
Merge branch 'master' into dependabot/gradle/com.google.android.material-material-1.13.0
2 parents 9b1c2b9 + aaefeef commit 885c811

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

FlowCrypt/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ dependencies {
449449
implementation("androidx.appcompat:appcompat:1.7.1")
450450
implementation("androidx.legacy:legacy-preference-v14:1.0.0")
451451
implementation("androidx.cardview:cardview:1.0.0")
452-
implementation("androidx.browser:browser:1.8.0")
452+
implementation("androidx.browser:browser:1.9.0")
453453
implementation("androidx.recyclerview:recyclerview:1.4.0")
454454
implementation("androidx.recyclerview:recyclerview-selection:1.2.0")
455455
implementation("androidx.constraintlayout:constraintlayout:2.2.1")

FlowCrypt/src/androidTest/java/com/flowcrypt/email/WkdClientTest.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ package com.flowcrypt.email
88
import android.content.Context
99
import androidx.test.core.app.ApplicationProvider
1010
import androidx.test.ext.junit.runners.AndroidJUnit4
11+
import androidx.test.filters.FlakyTest
1112
import androidx.test.filters.SmallTest
1213
import com.flowcrypt.email.api.retrofit.ApiHelper
1314
import com.flowcrypt.email.api.retrofit.response.base.ApiError
@@ -24,6 +25,7 @@ import org.apache.commons.codec.binary.ZBase32
2425
import org.apache.commons.codec.digest.DigestUtils
2526
import org.junit.Assert.assertNull
2627
import org.junit.Assert.assertTrue
28+
import org.junit.Ignore
2729
import org.junit.Rule
2830
import org.junit.Test
2931
import org.junit.rules.RuleChain
@@ -79,6 +81,8 @@ class WkdClientTest {
7981
.around(mockWebServerRule)
8082

8183
@Test
84+
@FlakyTest
85+
@Ignore("Temporary disabled as flaky")
8286
fun existingEmailFlowCryptDomainTest() = runBlocking {
8387
val keys = WkdClient.lookupEmail(context, EXISTING_EMAIL)
8488
assertTrue("There are no keys in the key collection", requireNotNull(keys).keyRings.hasNext())

FlowCrypt/src/androidTest/java/com/flowcrypt/email/ui/gmailapi/ComposeScreenReplyWithGmailApiSignatureFlowTest.kt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import androidx.test.espresso.action.ViewActions.click
1111
import androidx.test.espresso.contrib.RecyclerViewActions.actionOnItemAtPosition
1212
import androidx.test.espresso.matcher.ViewMatchers.withId
1313
import androidx.test.ext.junit.runners.AndroidJUnit4
14+
import androidx.test.filters.FlakyTest
1415
import androidx.test.filters.MediumTest
1516
import com.flowcrypt.email.R
1617
import com.flowcrypt.email.TestConstants
@@ -25,6 +26,7 @@ import com.flowcrypt.email.ui.base.BaseComposeGmailApiSignatureFlowTest
2526
import okhttp3.mockwebserver.Dispatcher
2627
import okhttp3.mockwebserver.MockResponse
2728
import okhttp3.mockwebserver.RecordedRequest
29+
import org.junit.Ignore
2830
import org.junit.Rule
2931
import org.junit.Test
3032
import org.junit.rules.RuleChain
@@ -65,6 +67,8 @@ class ComposeScreenReplyWithGmailApiSignatureFlowTest :
6567
.around(ScreenshotTestRule())
6668

6769
@Test
70+
@FlakyTest
71+
@Ignore("Temporary disabled as flaky")
6872
fun testAddingSignatureAfterStart() {
6973
//need to wait while the app loads the messages list
7074
waitForObjectWithText(SUBJECT_EXISTING_STANDARD, TimeUnit.SECONDS.toMillis(10))
@@ -88,4 +92,4 @@ class ComposeScreenReplyWithGmailApiSignatureFlowTest :
8892

8993
doBaseChecking()
9094
}
91-
}
95+
}

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// Top-level build file where you can add configuration options common to all sub-projects/modules.
77

88
plugins {
9-
id("com.android.application") version "8.12.1" apply false
9+
id("com.android.application") version "8.13.0" apply false
1010
id("org.jetbrains.kotlin.android") version "2.2.10" apply false
1111
id("androidx.navigation.safeargs.kotlin") version "2.9.3" apply false
1212
id("com.starter.easylauncher") version "6.4.1" apply false

0 commit comments

Comments
 (0)