123 lines
4.3 KiB
Kotlin
123 lines
4.3 KiB
Kotlin
object Dependencies {
|
|
const val compile_sdk_version = 32
|
|
const val min_sdk_version = 23
|
|
const val target_sdk_version = 32
|
|
|
|
// https://github.com/protocolbuffers/protobuf/releases
|
|
const val protobuf_version = "3.21.4"
|
|
|
|
// https://github.com/google/protobuf-gradle-plugin/releases
|
|
const val protobuf_plugin_version = "0.8.19"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/navigation
|
|
const val nav_version = "2.5.1"
|
|
|
|
// https://dagger.dev/hilt/gradle-setup
|
|
const val hilt_version = "2.43.1"
|
|
|
|
// https://kotlinlang.org/docs/gradle.html
|
|
const val kotlin_version = "1.7.10"
|
|
|
|
// https://maven.google.com/web/index.html?q=com.android.tools.build#com.android.tools.build:gradle
|
|
const val android_plugin_version = "7.2.1"
|
|
|
|
// https://developers.google.com/android/guides/google-services-plugin
|
|
const val google_services_version = "4.3.13"
|
|
|
|
// https://mvnrepository.com/artifact/com.google.firebase/firebase-crashlytics-gradle
|
|
const val crashlytics_version = "2.9.1"
|
|
|
|
// https://plugins.gradle.org/plugin/org.sonarqube
|
|
const val sonarqube_version = "3.4.0.2513"
|
|
|
|
// https://plugins.gradle.org/plugin/nl.neotech.plugin.rootcoverage
|
|
const val root_coverage_version = "1.5.3"
|
|
|
|
// https://plugins.gradle.org/plugin/com.guardsquare.appsweep
|
|
const val appsweep_version = "1.1.0"
|
|
|
|
// https://github.com/material-components/material-components-android/releases
|
|
const val material_version = "1.6.1"
|
|
|
|
// https://developer.android.com/kotlin/ktx#core
|
|
const val core_ktx_version = "1.8.0"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/appcompat
|
|
const val appcompat_version = "1.4.2"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/constraintlayout
|
|
const val contraint_layout_version = "2.1.4"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/swiperefreshlayout
|
|
const val swipe_refresh_layout_version = "1.1.0"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/lifecycle
|
|
const val lifecycle_version = "2.5.1"
|
|
|
|
// https://github.com/square/retrofit/tags
|
|
const val retrofit_version = "2.9.0"
|
|
|
|
// https://github.com/JakeWharton/retrofit2-kotlinx-serialization-converter/tags
|
|
const val retrofit_kotlinx_serialization_version = "0.8.0"
|
|
|
|
// https://github.com/Kotlin/kotlinx.serialization/releases
|
|
const val kotlinx_serialization_version = "1.3.3"
|
|
|
|
// https://github.com/square/okhttp/tags
|
|
const val okhttp_version = "4.10.0"
|
|
|
|
// https://github.com/JakeWharton/timber/releases
|
|
const val timber_version = "5.0.1"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/paging
|
|
const val paging_version = "3.1.1"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/room
|
|
const val room_version = "2.4.3"
|
|
|
|
// https://github.com/Kotlin/kotlinx-datetime/releases
|
|
const val kotlinx_datetime_version = "0.4.0"
|
|
|
|
// https://github.com/bumptech/glide/releases
|
|
const val glide_version = "4.13.2"
|
|
|
|
// https://github.com/androidbroadcast/ViewBindingPropertyDelegate/releases
|
|
const val view_binding_delegate_version = "1.5.6"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/datastore
|
|
const val datastore_version = "1.0.0"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/security
|
|
const val security_version = "1.0.0"
|
|
|
|
// https://mvnrepository.com/artifact/com.google.firebase/firebase-bom?repo=google
|
|
const val firebase_version = "30.3.1"
|
|
|
|
// https://github.com/junit-team/junit4/releases
|
|
const val junit_version = "4.13.2"
|
|
|
|
// https://developer.android.com/jetpack/androidx/releases/test
|
|
const val junit_ktx_version = "1.1.3"
|
|
|
|
// https://github.com/Kotlin/kotlinx.coroutines/releases
|
|
const val coroutines_version = "1.6.4"
|
|
|
|
// https://github.com/robolectric/robolectric/releases
|
|
const val robolectric_version = "4.8.1"
|
|
|
|
// https://mvnrepository.com/artifact/com.google.truth/truth
|
|
const val truth_version = "1.1.3"
|
|
|
|
// https://mockk.io/
|
|
const val mockk_version = "1.12.5"
|
|
|
|
// https://github.com/square/leakcanary/releases
|
|
const val leakcanary_version = "2.9.1"
|
|
|
|
// https://github.com/ChuckerTeam/chucker/releases
|
|
const val chucker_version = "3.5.2"
|
|
|
|
// https://developer.android.com/studio/write/java8-support#library-desugaring
|
|
const val desugar_version = "1.1.5"
|
|
}
|