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 /autofill-parser/build.gradle.kts | |
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 'autofill-parser/build.gradle.kts')
-rw-r--r-- | autofill-parser/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autofill-parser/build.gradle.kts b/autofill-parser/build.gradle.kts index be71acf0..ed5b5b35 100644 --- a/autofill-parser/build.gradle.kts +++ b/autofill-parser/build.gradle.kts @@ -21,6 +21,6 @@ dependencies { implementation(libs.androidx.autofill) implementation(libs.kotlin.coroutines.android) implementation(libs.kotlin.coroutines.core) - implementation(libs.thirdparty.timberkt) + implementation(libs.thirdparty.logcat) testImplementation(libs.bundles.testDependencies) } |