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:
Harsh Shandilya 2020-09-20 21:47:22 +05:30
parent 9ccefe87e8
commit 9c91cdc34c
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 5 additions and 5 deletions

View file

@ -49,7 +49,6 @@ afterEvaluate {
} }
dependencies { dependencies {
implementation(Dependencies.AndroidX.core_ktx)
implementation(Dependencies.AndroidX.autofill) implementation(Dependencies.AndroidX.autofill)
implementation(Dependencies.Kotlin.Coroutines.android) implementation(Dependencies.Kotlin.Coroutines.android)
implementation(Dependencies.Kotlin.Coroutines.core) implementation(Dependencies.Kotlin.Coroutines.core)

View file

@ -12,7 +12,6 @@ import android.os.Build
import android.os.Bundle import android.os.Bundle
import android.view.autofill.AutofillId import android.view.autofill.AutofillId
import androidx.annotation.RequiresApi import androidx.annotation.RequiresApi
import androidx.core.os.bundleOf
import com.github.ajalt.timberkt.d import com.github.ajalt.timberkt.d
/** /**
@ -49,9 +48,11 @@ sealed class FormOrigin(open val identifier: String) {
} }
} }
fun toBundle() = when (this) { fun toBundle() = Bundle().apply {
is Web -> bundleOf(BUNDLE_KEY_WEB_IDENTIFIER to identifier) when (this@FormOrigin) {
is App -> bundleOf(BUNDLE_KEY_APP_IDENTIFIER to identifier) is Web -> putString(BUNDLE_KEY_WEB_IDENTIFIER, identifier)
is App -> putString(BUNDLE_KEY_APP_IDENTIFIER, identifier)
}
} }
} }