Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion FlowCrypt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ dependencies {
implementation("androidx.appcompat:appcompat:1.7.1")
implementation("androidx.legacy:legacy-preference-v14:1.0.0")
implementation("androidx.cardview:cardview:1.0.0")
implementation("androidx.browser:browser:1.8.0")
implementation("androidx.browser:browser:1.9.0")
implementation("androidx.recyclerview:recyclerview:1.4.0")
implementation("androidx.recyclerview:recyclerview-selection:1.2.0")
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package com.flowcrypt.email
import android.content.Context
import androidx.test.core.app.ApplicationProvider
import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.filters.FlakyTest
import androidx.test.filters.SmallTest
import com.flowcrypt.email.api.retrofit.ApiHelper
import com.flowcrypt.email.api.retrofit.response.base.ApiError
Expand All @@ -24,6 +25,7 @@ import org.apache.commons.codec.binary.ZBase32
import org.apache.commons.codec.digest.DigestUtils
import org.junit.Assert.assertNull
import org.junit.Assert.assertTrue
import org.junit.Ignore
import org.junit.Rule
import org.junit.Test
import org.junit.rules.RuleChain
Expand Down Expand Up @@ -79,6 +81,8 @@ class WkdClientTest {
.around(mockWebServerRule)

@Test
@FlakyTest
@Ignore("Temporary disabled as flaky")
fun existingEmailFlowCryptDomainTest() = runBlocking {
val keys = WkdClient.lookupEmail(context, EXISTING_EMAIL)
assertTrue("There are no keys in the key collection", requireNotNull(keys).keyRings.hasNext())
Expand Down