-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared_dependencies.gradle
More file actions
96 lines (77 loc) Β· 4 KB
/
Copy pathshared_dependencies.gradle
File metadata and controls
96 lines (77 loc) Β· 4 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
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
dependencies {
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.6.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.6.0'
implementation 'androidx.navigation:navigation-ui-ktx:2.6.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'de.hdodenhof:circleimageview:3.1.0'
//Retrofit
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2"
//Glide
implementation 'com.github.bumptech.glide:glide:4.15.1'
implementation 'com.github.GrenderG:Toasty:1.5.2'
implementation 'androidx.browser:browser:1.5.0'
//Datastore
// Data Store
implementation "androidx.datastore:datastore-preferences-core:1.0.0"
implementation "androidx.datastore:datastore-preferences:1.0.0"
implementation "androidx.datastore:datastore-preferences-rxjava2:1.0.0"
implementation "androidx.datastore:datastore-preferences-rxjava3:1.0.0"
//Tensorflow Lite
implementation 'org.tensorflow:tensorflow-lite:2.4.0'
// Coroutine Support
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1"
// Lifecycle
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1"
api "androidx.lifecycle:lifecycle-livedata-ktx:2.6.1"
//koin
implementation "io.insert-koin:koin-core:$koin_version"
testImplementation "io.insert-koin:koin-test:$koin_version"
testImplementation "io.insert-koin:koin-test-junit4:$koin_version"
testImplementation "io.insert-koin:koin-test-junit5:$koin_version"
implementation "io.insert-koin:koin-android:$koin_android_version"
implementation "io.insert-koin:koin-android-compat:$koin_android_version"
implementation "io.insert-koin:koin-androidx-workmanager:$koin_android_version"
implementation "io.insert-koin:koin-androidx-navigation:$koin_android_version"
//
implementation "io.getstream:stream-chat-android-ui-components:6.0.2"
implementation "io.getstream:stream-chat-android-offline:6.0.2"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
implementation "androidx.activity:activity-ktx:1.7.2"
implementation "io.coil-kt:coil:2.4.0"
//gson
implementation 'com.google.code.gson:gson:2.10'
def room_version = "2.4.3"
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
def lifecycle_version = "2.5.1"
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycle_version"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
//dexter
implementation 'com.karumi:dexter:6.2.1'
//lottie
implementation 'com.airbnb.android:lottie:6.0.0'
//Room Database
implementation "androidx.room:room-runtime:2.5.2"
implementation "androidx.room:room-ktx:2.5.2"
kapt "androidx.room:room-compiler:2.5.2"
//JSON Web Token
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
implementation 'io.jsonwebtoken:jjwt-impl:0.11.2'
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.2'
//Motion
implementation 'com.github.Spikeysanju:MotionToast:1.4'
}