@@ -54,53 +54,53 @@ android {
5454
5555dependencies {
5656 implementation fileTree(dir : ' libs' , include : [' *.jar' ])
57- implementation " org.jetbrains. kotlin:kotlin- stdlib- jdk8: $v ersion_kotlin "
57+ implementation libs . kotlin. stdlib. jdk8
5858
5959 // Support libraries
60- implementation " androidx.appcompat:appcompat: $v ersion_appcompat "
61- implementation " androidx.fragment:fragment: $v ersion_fragment "
62- implementation " androidx.constraintlayout:constraintlayout: $v ersion_constraint_layout "
60+ implementation libs . androidx. appcompat
61+ implementation libs . androidx. fragment
62+ implementation libs . androidx. constraintlayout
6363
6464 // Android KTX
65- implementation " androidx.core:core- ktx: $v ersion_core "
65+ implementation libs . androidx. core. ktx
6666
6767 // Navigation
68- implementation " androidx.navigation:navigation- fragment- ktx: $v ersion_navigation "
69- implementation " androidx.navigation:navigation-ui- ktx: $v ersion_navigation "
68+ implementation libs . androidx. navigation. fragment. ktx
69+ implementation libs . androidx. navigation. ui . ktx. v277
7070
7171 // Coroutines for getting off the UI thread
7272 implementation " org.jetbrains.kotlinx:kotlinx-coroutines-core:$version_kotlin_coroutines "
73- implementation " org.jetbrains. kotlinx:kotlinx- coroutines- android: $v ersion_kotlin_coroutines "
73+ implementation libs . kotlinx. coroutines. android
7474
7575 // Retrofit for networking
76- implementation " com.squareup.retrofit2: retrofit: $v ersion_retrofit "
77- implementation " com.squareup.retrofit2: converter- moshi: $v ersion_retrofit "
78- implementation " com.jakewharton.retrofit: retrofit2- kotlin- coroutines- adapter: $v ersion_retrofit_coroutines_adapter "
76+ implementation libs . retrofit
77+ implementation libs . converter. moshi
78+ implementation libs . retrofit2. kotlin. coroutines. adapter
7979
8080 // Moshi for parsing the JSON format
81- implementation " com.squareup. moshi:moshi: $v ersion_moshi "
82- implementation " com.squareup. moshi:moshi- kotlin: $v ersion_moshi "
81+ implementation libs . moshi
82+ implementation libs . moshi. kotlin
8383
8484 // Joda time library for dealing with time
85- implementation " joda- time:joda-time: $v ersion_joda "
85+ implementation libs . joda. time
8686
8787 // ViewModel and LiveData (arch components)
88- implementation " androidx.lifecycle:lifecycle- extensions: $v ersion_lifecycle_extensions "
89- implementation " androidx.lifecycle:lifecycle- viewmodel- ktx: $l ifecycle_version "
88+ implementation libs . androidx. lifecycle. extensions
89+ implementation libs . androidx. lifecycle. viewmodel. ktx
9090
9191 // Logging
92- implementation " com.jakewharton. timber:timber: $v ersion_timber "
92+ implementation libs . timber
9393
9494 // Glide for images
95- implementation " com.github.bumptech. glide:glide: $v ersion_glide "
95+ implementation libs . glide
9696
9797 // Room database
98- implementation " androidx.room:room- runtime: $v ersion_room "
98+ implementation libs . androidx. room. runtime
9999 kapt " androidx.room:room-compiler:$version_room "
100100
101101 // Kotlin Extensions and Coroutines support for Room
102- implementation " androidx.room:room- ktx: $v ersion_room "
102+ implementation libs . androidx. room. ktx
103103
104104 // WorkManager
105- implementation " androidx.work:work- runtime- ktx: $v ersion_work "
105+ implementation libs . androidx. work. runtime. ktx
106106}
0 commit comments