diff --git a/FlowCrypt/src/main/java/com/flowcrypt/email/ui/activity/fragment/UserRecoverableAuthExceptionFragment.kt b/FlowCrypt/src/main/java/com/flowcrypt/email/ui/activity/fragment/UserRecoverableAuthExceptionFragment.kt index 12b7ecbd6b..dd36955050 100644 --- a/FlowCrypt/src/main/java/com/flowcrypt/email/ui/activity/fragment/UserRecoverableAuthExceptionFragment.kt +++ b/FlowCrypt/src/main/java/com/flowcrypt/email/ui/activity/fragment/UserRecoverableAuthExceptionFragment.kt @@ -1,12 +1,13 @@ /* * © 2016-present FlowCrypt a.s. Limitations apply. Contact human@flowcrypt.com - * Contributors: DenBond7 + * Contributors: denbond7 */ package com.flowcrypt.email.ui.activity.fragment import android.accounts.Account import android.accounts.AccountManager +import android.annotation.SuppressLint import android.app.Activity import android.os.Bundle import android.view.LayoutInflater @@ -142,6 +143,7 @@ class UserRecoverableAuthExceptionFragment : GeneralUtil.openCustomTab(requireContext(), Constants.FLOWCRYPT_TERMS_URL) } binding?.buttonSecurity?.setOnClickListener { + @SuppressLint("CheckResult") NavGraphDirections.actionGlobalHtmlViewFromAssetsRawFragment( title = getString(R.string.security), resourceIdAsString = "html/security.htm" diff --git a/build.gradle.kts b/build.gradle.kts index 09b5895ffb..388877beba 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -8,7 +8,7 @@ plugins { id("com.android.application") version "8.9.2" apply false id("org.jetbrains.kotlin.android") version "2.2.0" apply false - id("androidx.navigation.safeargs.kotlin") version "2.8.9" apply false + id("androidx.navigation.safeargs.kotlin") version "2.9.3" apply false id("com.starter.easylauncher") version "6.4.0" apply false id("org.jetbrains.kotlin.plugin.parcelize") version "2.2.0" apply false id("com.google.devtools.ksp") version "2.2.0-2.0.2" apply false