-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeps.gradle
52 lines (48 loc) · 2.54 KB
/
deps.gradle
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
45
46
47
48
49
50
51
52
ext {
def lifecycle_version = "2.4.1"
def constraint_version = "2.1.4"
def junit_version = "1.1.3"
def espresso_version = "3.4.0"
def material_version = "1.6.1"
def support_version = "1.4.2"
def recycler_version = "1.2.1"
def picasso_version = "2.8"
def retrofit_version = "2.9.0"
def okhttp_version = "4.9.3"
def coroutines_version = "1.3.9"
def paging_version = "3.1.1"
def navigation_version = "2.4.2"
def serialization_version = "1.3.3"
def room_version = "2.4.2"
def hilt_version = "2.49"
implDependencies = [
ViewModel : "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version",
ConstraintLayout : "androidx.constraintlayout:constraintlayout:$constraint_version",
MaterialDesign : "com.google.android.material:material:$material_version",
AppCompat : "androidx.appcompat:appcompat:$support_version",
RecyclerView : "androidx.recyclerview:recyclerview:$recycler_version",
Paging : "androidx.paging:paging-runtime:$paging_version",
Picasso : "com.squareup.picasso:picasso:$picasso_version",
Retrofit : "com.squareup.retrofit2:retrofit:$retrofit_version",
RetrofitConverter : "com.squareup.retrofit2:converter-gson:$retrofit_version",
OkHttp : "com.squareup.okhttp3:logging-interceptor:$okhttp_version",
coroutines : "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version",
NavigationFragment : "androidx.navigation:navigation-fragment-ktx:$navigation_version",
NavigationUI : "androidx.navigation:navigation-ui-ktx:$navigation_version",
KotlinSerialization : "org.jetbrains.kotlinx:kotlinx-serialization-json:$serialization_version",
Room : "androidx.room:room-runtime:$room_version",
RoomKtxAndCoroutines: "androidx.room:room-ktx:$room_version",
Hilt : "com.google.dagger:hilt-android:$hilt_version"
]
testDependencies = [
JUnit: "androidx.test.ext:junit:$junit_version",
]
androidTestDependencies = [
JUnit : "androidx.test.ext:junit:$junit_version",
Espresso: "androidx.test.espresso:espresso-core:$espresso_version"
]
annotationProcessor = [
RoomCompiler: "androidx.room:room-compiler:$room_version",
HiltCompiler: "com.google.dagger:hilt-android-compiler:$hilt_version"
]
}