-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathdeps.gradle
101 lines (86 loc) · 4.44 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
ext {
gradleVersion = '4.2.2'
kotlinVersion = '1.4.10'
lifecycleVersion = '2.2.0'
coroutineVersion = '1.3.9'
glideVersion = '4.12.0'
chuckOkHttpLoggingVersion = '1.1.0'
navigationVersion = '2.3.5'
roomVersion = '2.3.0'
retrofitVersion = '2.9.0'
okHttpVersion = '4.9.0'
chuckerVersion = '3.5.0'
daggerVersion = '2.38'
config = [
applicationId : "id.sansets.infood",
compileSdkVersion: 30,
buildToolsVersion: "30.0.1",
minSdkVersion : 21,
targetSdkVersion : 29,
versionCode : 1,
versionName : "1.0.0"
]
supportDependencies = [
coreKtx : "androidx.core:core-ktx:1.6.0",
material : "com.google.android.material:material:1.4.0",
lifecycleExtensions: "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion",
lifecycleViewModel : "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion",
lifecycleLiveData : "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion",
lifecycleCommonJava: "androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion",
fragmentKtx : "androidx.fragment:fragment-ktx:1.3.6",
appcompat : "androidx.appcompat:appcompat:1.3.1"
]
kotlinDependencies = [
stdlib : "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion",
coroutineCore : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutineVersion",
coroutineAndroid: "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutineVersion",
coroutinesTest : "org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutineVersion"
]
layoutDependencies = [
constraint : "androidx.constraintlayout:constraintlayout:2.0.4",
swiperefresh: "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0",
gridlayout : "androidx.gridlayout:gridlayout:1.0.0",
]
navigationDependencies = [
fragment : "androidx.navigation:navigation-fragment:$navigationVersion",
ui : "androidx.navigation:navigation-ui:$navigationVersion",
fragmentKtx: "androidx.navigation:navigation-fragment-ktx:$navigationVersion",
uiKtx : "androidx.navigation:navigation-ui-ktx:$navigationVersion",
]
injectionDependencies = [
dagger : "com.google.dagger:dagger:$daggerVersion",
daggerCompiler : "com.google.dagger:dagger-compiler:$daggerVersion",
daggerAndroid : "com.google.dagger:dagger-android:$daggerVersion",
daggerAndroidSupport : "com.google.dagger:dagger-android-support:$daggerVersion",
daggerAndroidProcessor: "com.google.dagger:dagger-android-processor:$daggerVersion"
]
databaseDependencies = [
roomKtx : "androidx.room:room-ktx:$roomVersion",
roomCompiler: "androidx.room:room-compiler:$roomVersion"
]
firebaseDependencies = [
core : 'com.google.firebase:firebase-core:19.0.0',
analytics: 'com.google.firebase:firebase-analytics-ktx:19.0.0',
]
networkDependencies = [
retrofit : "com.squareup.retrofit2:retrofit:$retrofitVersion",
retrofitConverterGson : "com.squareup.retrofit2:converter-gson:$retrofitVersion",
okHttp : "com.squareup.okhttp3:okhttp:$okHttpVersion",
okHttpLogginInterceptor: "com.squareup.okhttp3:logging-interceptor:$okHttpVersion",
chuckerDebug : "com.github.chuckerteam.chucker:library:$chuckerVersion",
chuckerRelease : "com.github.chuckerteam.chucker:library-no-op:$chuckerVersion",
glide : "com.github.bumptech.glide:glide:$glideVersion",
glideCompiler : "com.github.bumptech.glide:compiler:$glideVersion"
]
libraries = [
gson : "com.google.code.gson:gson:2.8.6",
databaseBrowser: 'com.amitshekhar.android:debug-db:1.0.6',
shimmer : 'com.facebook.shimmer:shimmer:0.5.0',
]
testDependencies = [
junit : 'junit:junit:4.13',
androidxJunit : 'androidx.test.ext:junit:1.1.3',
androidxEspresso : 'androidx.test.espresso:espresso-core:3.4.0',
androidXAnnotation: 'androidx.annotation:annotation:1.2.0'
]
}