Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ForceTower committed Aug 24, 2024
1 parent c87a37b commit 92c2e0d
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,8 @@ class EvaluationViewModel @Inject constructor(
_teacherIntSelect.value = Event(value)
}

override fun onEntitySelected(entity: EdgeParadoxSearchableItem) {
override fun onEntitySelected(entity: EdgeParadoxSearchableItem?) {
entity ?: return
_entitySelected.value = Event(entity)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ package com.forcetower.uefs.feature.evaluation.search
import com.forcetower.uefs.core.model.unes.EdgeParadoxSearchableItem

interface EntitySelector {
fun onEntitySelected(entity: EdgeParadoxSearchableItem)
fun onEntitySelected(entity: EdgeParadoxSearchableItem?)
}
2 changes: 1 addition & 1 deletion dynamic-features/aeri/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down
2 changes: 1 addition & 1 deletion dynamic-features/conference/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down
2 changes: 1 addition & 1 deletion dynamic-features/dashboard/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down
2 changes: 1 addition & 1 deletion dynamic-features/disciplines/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down
2 changes: 1 addition & 1 deletion dynamic-features/event/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down
2 changes: 1 addition & 1 deletion dynamic-features/map/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
kapt {
correctErrorTypes = true
javacOptions {
option("-Xmaxerrs", 1000)
option("-Xmaxerrs", "1000")
}
}

Expand Down
16 changes: 9 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
aboutlibraries = "11.2.2"
agp = "8.5.2"
android-desugar = "2.0.4"
android-image-cropper = "4.5.0"
android-image-cropper = "4.6.0"
androidx-lifecycle = "2.8.4"
androidx-hilt-compiler = "1.2.0"
annotation = "1.8.2"
Expand All @@ -15,7 +15,7 @@ card-slider = "0.3.1"
constraintlayout = "2.1.4"
core-testing = "2.2.0"
credentials = "1.3.0-rc01"
dagger = "2.51.1"
dagger = "2.52"
datastore-preferences = "1.1.1"
espresso-core = "3.6.1"
firebase-bom = "33.1.2"
Expand All @@ -25,22 +25,23 @@ flexbox = "3.0.0"
floatingsearchview = "2.1.1"
fragment = "1.8.2"
glide = "4.16.0"
google-ksp = "2.0.10-1.0.24"
google-ksp = "2.0.20-1.0.24"
google-services = "4.4.2"
guava = "33.3.0-android"
gson = "2.11.0"
hilt-android = "2.51.1"
hilt-android = "2.52"
hilt-work = "1.2.0"
jsoup = "1.18.1"
juice = "1.8.0"
junit = "4.13.2"
junit-version = "1.2.1"
kotlin = "2.0.10"
kotlin = "2.0.20"
kotlinter-gradle = "4.3.0"
kotlinx-coroutines-test = "1.8.1"
ktx = "1.13.1"
chucker = "4.0.0"
listenablefuture = "9999.0-empty-to-avoid-conflict-with-guava"
lottie = "6.4.1"
lottie = "6.5.0"
material = "1.12.0"
materialdatetimepicker = "4.2.3"
markwon = "4.6.2"
Expand Down Expand Up @@ -69,7 +70,7 @@ ktor = "2.3.9"
coroutines = "1.8.1"
kotlinx-datetime = "0.6.0"
swiperefreshlayout = "1.1.0"
taptargetview = "1.13.3"
taptargetview = "1.14.0"
timber = "5.0.1"
uuid = "0.8.2"
native-coroutines = "1.0.0-ALPHA-26"
Expand Down Expand Up @@ -136,6 +137,7 @@ flexbox = { module = "com.google.android.flexbox:flexbox", version.ref = "flexbo
floatingsearchview = { module = "com.github.arimorty:floatingsearchview", version.ref = "floatingsearchview" }
glide = { module = "com.github.bumptech.glide:glide", version.ref = "glide" }
glide-compiler = { module = "com.github.bumptech.glide:compiler", version.ref = "glide" }
guava = { module = "com.google.guava:guava", version.ref = "guava" }
gson = { module = "com.google.code.gson:gson", version.ref = "gson" }
hilt-android = { module = "com.google.dagger:hilt-android", version.ref = "hilt-android" }
hilt-compiler = { module = "com.google.dagger:hilt-compiler", version.ref = "hilt-android" }
Expand Down

0 comments on commit 92c2e0d

Please sign in to comment.