diff options
author | (´⌣`ʃƪ) <pt2121@users.noreply.github.com> | 2021-10-03 01:32:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-03 14:02:15 +0530 |
commit | 2cef6a5bb4cb4afb1b1f1b704f83c1565e441825 (patch) | |
tree | 92db72d9578a0093d09e83d8c244b51b38cab10c /app/src/nonFree | |
parent | c4df226cfd4efcfdd4aae332d1ac598336821fa7 (diff) |
Replace Timber with logcat (#1509)
* Replace Timber with logcat (#1505)
* Add extension for asLog which takes a message param
Co-authored-by: Aditya Wasan <adityawasan55@gmail.com>
Diffstat (limited to 'app/src/nonFree')
-rw-r--r-- | app/src/nonFree/java/dev/msfjarvis/aps/autofill/oreo/ui/AutofillSmsActivity.kt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/src/nonFree/java/dev/msfjarvis/aps/autofill/oreo/ui/AutofillSmsActivity.kt b/app/src/nonFree/java/dev/msfjarvis/aps/autofill/oreo/ui/AutofillSmsActivity.kt index 5e53bf3e..094c6c33 100644 --- a/app/src/nonFree/java/dev/msfjarvis/aps/autofill/oreo/ui/AutofillSmsActivity.kt +++ b/app/src/nonFree/java/dev/msfjarvis/aps/autofill/oreo/ui/AutofillSmsActivity.kt @@ -17,8 +17,6 @@ import android.view.autofill.AutofillManager import androidx.annotation.RequiresApi import androidx.appcompat.app.AppCompatActivity import androidx.lifecycle.lifecycleScope -import com.github.ajalt.timberkt.e -import com.github.ajalt.timberkt.w import com.github.androidpasswordstore.autofillparser.AutofillAction import com.github.androidpasswordstore.autofillparser.Credentials import com.github.michaelbull.result.onFailure @@ -39,6 +37,8 @@ import kotlin.coroutines.suspendCoroutine import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.launch import kotlinx.coroutines.withContext +import logcat.LogPriority.WARN +import logcat.logcat suspend fun <T> Task<T>.suspendableAwait() = suspendCoroutine<T> { cont -> @@ -62,14 +62,14 @@ class AutofillSmsActivity : AppCompatActivity() { val googleApiAvailabilityInstance = GoogleApiAvailability.getInstance() val googleApiStatus = googleApiAvailabilityInstance.isGooglePlayServicesAvailable(context) if (googleApiStatus != ConnectionResult.SUCCESS) { - w { + logcat(WARN) { "Google Play Services unavailable or not updated: ${googleApiAvailabilityInstance.getErrorString(googleApiStatus)}" } return false } // https://developer.android.com/guide/topics/text/autofill-services#sms-autofill if (googleApiAvailabilityInstance.getApkVersion(context) < 190056000) { - w { "Google Play Service 19.0.56 or higher required for SMS OTP Autofill" } + logcat(WARN) { "Google Play Service 19.0.56 or higher required for SMS OTP Autofill" } return false } return true @@ -103,7 +103,7 @@ class AutofillSmsActivity : AppCompatActivity() { clientState = intent?.getBundleExtra(AutofillManager.EXTRA_CLIENT_STATE) ?: run { - e { "AutofillSmsActivity started without EXTRA_CLIENT_STATE" } + logcat(WARN) { "AutofillSmsActivity started without EXTRA_CLIENT_STATE" } finish() return } |