Update dependencies

This commit is contained in:
William Brawner 2022-11-11 20:45:16 -07:00
parent 09b3a21cbc
commit d95b63aa49
3 changed files with 4 additions and 5 deletions

View file

@ -45,7 +45,6 @@ fun AuthScreen(authViewModel: AuthViewModel) {
if (state is AuthViewModel.AuthState.Loading) {
CircularProgressIndicator()
} else if (state is AuthViewModel.AuthState.Unauthenticated) {
val s = state as AuthViewModel.AuthState.Unauthenticated
AuthForm(
s.server,

View file

@ -5,9 +5,9 @@ buildscript {
mavenCentral()
}
val hiltVersion by extra("2.43.2")
val kotlinVersion by extra("1.7.10")
val kotlinVersion by extra("1.7.20")
dependencies {
classpath("com.android.tools.build:gradle:7.2.2")
classpath("com.android.tools.build:gradle:7.3.0")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion")
}

View file

@ -3,12 +3,12 @@ accompanist = "0.26.3-beta"
androidx-core = "1.9.0"
androidx-appcompat = "1.5.1"
compose-ui = "1.2.1"
compose-compiler = "1.3.1"
compose-compiler = "1.3.2"
coroutines = "1.6.4"
espresso = "3.3.0"
hilt-android = "2.43.2"
hilt-work = "1.0.0"
kotlin = "1.7.10"
kotlin = "1.7.20"
ktor = "2.1.0"
material = "1.3.0"
maxSdk = "33"