Add links to versions of all dependencies
This commit is contained in:
@@ -39,6 +39,7 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// https://github.com/material-components/material-components-android
|
||||
implementation "com.google.android.material:material:1.4.0"
|
||||
|
||||
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
|
||||
@@ -46,12 +47,16 @@ dependencies {
|
||||
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
|
||||
androidTestImplementation "androidx.navigation:navigation-testing:$nav_version"
|
||||
|
||||
// https://developer.android.com/kotlin/ktx#core
|
||||
implementation "androidx.core:core-ktx:1.7.0"
|
||||
|
||||
// https://developer.android.com/jetpack/androidx/releases/appcompat
|
||||
implementation "androidx.appcompat:appcompat:1.3.1"
|
||||
|
||||
// https://developer.android.com/jetpack/androidx/releases/constraintlayout
|
||||
implementation "androidx.constraintlayout:constraintlayout:2.1.1"
|
||||
|
||||
// https://developer.android.com/jetpack/androidx/releases/lifecycle
|
||||
def lifecycle_version = "2.4.0"
|
||||
implementation "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycle_version"
|
||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
|
||||
@@ -59,23 +64,31 @@ dependencies {
|
||||
implementation "com.google.dagger:hilt-android:$hilt_version"
|
||||
kapt "com.google.dagger:hilt-compiler:$hilt_version"
|
||||
|
||||
// https://github.com/square/retrofit/tags
|
||||
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
||||
// https://github.com/JakeWharton/retrofit2-kotlinx-serialization-converter/tags
|
||||
implementation "com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:0.8.0"
|
||||
|
||||
// https://search.maven.org/artifact/com.squareup.okhttp3/okhttp
|
||||
def okhttp_version = "4.9.2"
|
||||
implementation "com.squareup.okhttp3:okhttp:$okhttp_version"
|
||||
implementation "com.squareup.okhttp3:logging-interceptor:$okhttp_version"
|
||||
|
||||
// https://github.com/Kotlin/kotlinx.serialization/releases
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.0"
|
||||
|
||||
// https://developer.android.com/jetpack/androidx/releases/preference
|
||||
implementation "androidx.preference:preference-ktx:1.1.1"
|
||||
|
||||
// https://github.com/JakeWharton/timber/releases
|
||||
implementation 'com.jakewharton.timber:timber:5.0.1'
|
||||
|
||||
// https://developer.android.com/jetpack/androidx/releases/paging
|
||||
def paging_version = "3.1.0-rc01"
|
||||
implementation "androidx.paging:paging-runtime-ktx:$paging_version"
|
||||
testImplementation "androidx.paging:paging-common-ktx:$paging_version"
|
||||
|
||||
// https://developer.android.com/jetpack/androidx/releases/room
|
||||
def room_version = "2.4.0-beta01"
|
||||
implementation "androidx.room:room-runtime:$room_version"
|
||||
implementation "androidx.room:room-ktx:$room_version"
|
||||
@@ -83,14 +96,19 @@ dependencies {
|
||||
kapt "androidx.room:room-compiler:$room_version"
|
||||
testImplementation "androidx.room:room-testing:$room_version"
|
||||
|
||||
// https://github.com/Kotlin/kotlinx-datetime/releases
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-datetime:0.3.1"
|
||||
|
||||
testImplementation "junit:junit:4.13.2"
|
||||
|
||||
// https://github.com/bumptech/glide/releases
|
||||
def glide_version = "4.12.0"
|
||||
implementation "com.github.bumptech.glide:glide:$glide_version"
|
||||
kapt "com.github.bumptech.glide:compiler:$glide_version"
|
||||
|
||||
// https://github.com/junit-team/junit4/releases
|
||||
testImplementation "junit:junit:4.13.2"
|
||||
|
||||
// https://developer.android.com/jetpack/androidx/releases/test
|
||||
androidTestImplementation "androidx.test.ext:junit:1.1.3"
|
||||
// https://developer.android.com/jetpack/androidx/releases/test
|
||||
androidTestImplementation "androidx.test.espresso:espresso-core:3.4.0"
|
||||
}
|
||||
@@ -1,13 +1,21 @@
|
||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||
buildscript {
|
||||
// https://developer.android.com/jetpack/androidx/releases/navigation
|
||||
ext.nav_version = "2.4.0-beta02"
|
||||
|
||||
// https://dagger.dev/hilt/gradle-setup
|
||||
ext.hilt_version = "2.38.1"
|
||||
|
||||
// https://kotlinlang.org/docs/gradle.html
|
||||
ext.kotlin_version = "1.5.31"
|
||||
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// https://maven.google.com/web/index.html?q=com.android.tools.build#com.android.tools.build:gradle
|
||||
classpath "com.android.tools.build:gradle:7.0.3"
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
||||
|
||||
Reference in New Issue
Block a user