-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathbuild.gradle
More file actions
44 lines (39 loc) · 1.58 KB
/
build.gradle
File metadata and controls
44 lines (39 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
google()
mavenCentral()
}
}
plugins {
id "com.android.application" version "7.4.2" apply false
id "com.android.library" version "7.4.2" apply false
id "org.jetbrains.kotlin.android" version "1.9.0" apply false
id "com.google.dagger.hilt.android" version "2.48" apply false
id "com.vanniktech.maven.publish" version "0.24.0" apply false
}
ext {
compileSdkVersion = 34
minSdkVersion = 21
targetSdkVersion = 34
androidxAnnotations = "androidx.annotation:annotation:1.2.0"
androidxCore = "androidx.core:core-ktx:1.9.0"
androidxActivity = "androidx.activity:activity-ktx:1.6.1"
lifecycleRuntime = "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1"
lifecycleViewModel = "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
material = "com.google.android.material:material:1.6.1"
recyclerview = "androidx.recyclerview:recyclerview:1.2.1"
hilt = "com.google.dagger:hilt-android:2.48"
hiltCompiler = "com.google.dagger:hilt-compiler:2.48"
okHttp3 = "com.squareup.okhttp3:okhttp:4.12.0"
okHttpLogging = "com.squareup.okhttp3:logging-interceptor:4.12.0"
retrofit = "com.squareup.retrofit2:retrofit:2.11.0"
retrofitMoshi = "com.squareup.retrofit2:converter-moshi:2.11.0"
moshi = "com.squareup.moshi:moshi:1.15.1"
moshiKt = "com.squareup.moshi:moshi-kotlin:1.15.1"
coil = "io.coil-kt:coil:2.2.2"
timber = "com.jakewharton.timber:timber:5.0.1"
junit = "junit:junit:4.13.2"
androidxTest = "androidx.test:core:1.5.0"
robolectric = "org.robolectric:robolectric:4.9.2"
mockWebServer = "com.squareup.okhttp3:mockwebserver:4.12.0"
}