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/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 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 0ca522f7..8638af34 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -107,12 +107,11 @@ dependencies { exclude(group = "org.apache.httpcomponents", module = "httpclient") } implementation(libs.thirdparty.kotlinResult) + implementation(libs.thirdparty.logcat) implementation(libs.thirdparty.modernAndroidPrefs) implementation(libs.thirdparty.plumber) implementation(libs.thirdparty.sshauth) implementation(libs.thirdparty.sshj) - implementation(libs.thirdparty.timber) - implementation(libs.thirdparty.timberkt) if (isSnapshot()) { implementation(libs.thirdparty.whatthestack) |