Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions AndroidClient/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ dependencies {
implementation libs.lifecycle.extensions
annotationProcessor libs.lifecycle.compiler

implementation libs.socketioclient
implementation(libs.socketioclient) {
exclude group: 'org.json', module: 'json'
}
implementation libs.eventbus

implementation libs.play.services.maps
Expand All @@ -62,8 +64,6 @@ dependencies {
// https://mvnrepository.com/artifact/com.mikepenz/google-material-typeface
implementation("com.mikepenz:google-material-typeface:3.0.1.3.original")

implementation libs.gson

implementation libs.rxandroid
implementation libs.rxjava

Expand Down Expand Up @@ -100,7 +100,7 @@ dependencies {
implementation libs.guava

// https://mvnrepository.com/artifact/androidx.preference/preference
implementation 'androidx.preference:preference:1.2.1'
implementation libs.preference

implementation libs.core

Expand All @@ -110,7 +110,7 @@ dependencies {
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0', {
exclude group: 'com.android.support', module: 'support-annotations'
})
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
//androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.0.4"
androidTestImplementation libs.testcore

Expand Down
Loading