diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-04-12 17:38:06 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 12:08:06 +0000 |
commit | cfbdb5f92ac034f595925fc25c3d0a11e0b3a390 (patch) | |
tree | d743f1a739b46887a36a55719a4bfd48e752e45d /autofill-parser/build.gradle.kts | |
parent | b7d43f1c9680ab558a0f461f15649d8d60792a03 (diff) |
Update to Gradle 7.0 (#1381)
Diffstat (limited to 'autofill-parser/build.gradle.kts')
-rw-r--r-- | autofill-parser/build.gradle.kts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/autofill-parser/build.gradle.kts b/autofill-parser/build.gradle.kts index da6dcc4d..928e3828 100644 --- a/autofill-parser/build.gradle.kts +++ b/autofill-parser/build.gradle.kts @@ -23,9 +23,9 @@ android { } dependencies { - compileOnly(Dependencies.AndroidX.annotation) - implementation(Dependencies.AndroidX.autofill) - implementation(Dependencies.Kotlin.Coroutines.android) - implementation(Dependencies.Kotlin.Coroutines.core) - implementation(Dependencies.ThirdParty.timberkt) + compileOnly(libs.androidx.annotation) + implementation(libs.androidx.autofill) + implementation(libs.kotlin.coroutines.android) + implementation(libs.kotlin.coroutines.core) + implementation(libs.thirdparty.timberkt) } |