Skip to content

Commit d9bf2f0

Browse files
Bump com.android.application from 9.1.1 to 9.2.0 (#3193)
* Bump com.android.application from 9.1.1 to 9.2.0 Bumps com.android.application from 9.1.1 to 9.2.0. --- updated-dependencies: - dependency-name: com.android.application dependency-version: 9.2.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Updated gradle to 9.5.0 to fix Lint warning * Updated com.android.application to 9.2.1 * Fixed lint warnings * Temporary ignored SubmitPublicKeyAfterCreationNonGoogleAccountFlowTest --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Den <DenBond7@gmail.com>
1 parent 325732d commit d9bf2f0

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

FlowCrypt/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ android {
101101

102102
buildTypes {
103103
getByName("release") {
104-
isShrinkResources = false
105104
isMinifyEnabled = false
106105
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
107106
signingConfig = signingConfigs.getByName("release")

FlowCrypt/src/main/java/com/flowcrypt/email/ui/activity/fragment/CheckKeysFragment.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
package com.flowcrypt.email.ui.activity.fragment
77

8+
import android.annotation.SuppressLint
89
import android.os.Bundle
910
import android.view.LayoutInflater
1011
import android.view.View
@@ -83,6 +84,8 @@ class CheckKeysFragment : BaseFragment<FragmentCheckKeysBinding>() {
8384

8485
if (!args.isExtraImportOpt) {
8586
if (args.skipImportedKeys) {
87+
//todo-denbond7 temporary changes to fix lint warning. Should be improved in future
88+
@SuppressLint("ThreadConstraint")
8689
removeAlreadyImportedKeys()
8790
}
8891
uniqueKeysCount = getCountOfUniqueKeys(keyDetailsAndFingerprintsMap)

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
apply(from = "$rootDir/ext.gradle.kts")
88

99
plugins {
10-
id("com.android.application") version "9.1.1" apply false
10+
id("com.android.application") version "9.2.1" apply false
1111
id("androidx.navigation.safeargs.kotlin") version "2.9.8" apply false
1212
id("com.starter.easylauncher") version "6.4.1" apply false
1313
id("org.jetbrains.kotlin.plugin.parcelize") version "2.3.21" apply false

0 commit comments

Comments
 (0)