mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-30 22:05:19 +00:00
autofill-parser: drop use of core-ktx
We use an alpha version of core-ktx that might be undesirable for projects including the library Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
@@ -49,7 +49,6 @@ afterEvaluate {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(Dependencies.AndroidX.core_ktx)
|
||||
implementation(Dependencies.AndroidX.autofill)
|
||||
implementation(Dependencies.Kotlin.Coroutines.android)
|
||||
implementation(Dependencies.Kotlin.Coroutines.core)
|
||||
|
@@ -12,7 +12,6 @@ import android.os.Build
|
||||
import android.os.Bundle
|
||||
import android.view.autofill.AutofillId
|
||||
import androidx.annotation.RequiresApi
|
||||
import androidx.core.os.bundleOf
|
||||
import com.github.ajalt.timberkt.d
|
||||
|
||||
/**
|
||||
@@ -49,9 +48,11 @@ sealed class FormOrigin(open val identifier: String) {
|
||||
}
|
||||
}
|
||||
|
||||
fun toBundle() = when (this) {
|
||||
is Web -> bundleOf(BUNDLE_KEY_WEB_IDENTIFIER to identifier)
|
||||
is App -> bundleOf(BUNDLE_KEY_APP_IDENTIFIER to identifier)
|
||||
fun toBundle() = Bundle().apply {
|
||||
when (this@FormOrigin) {
|
||||
is Web -> putString(BUNDLE_KEY_WEB_IDENTIFIER, identifier)
|
||||
is App -> putString(BUNDLE_KEY_APP_IDENTIFIER, identifier)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user