Skip to content

Commit

Permalink
build(android): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Oppzippy committed Jun 30, 2023
1 parent 1284cd8 commit d58af5f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion android/.idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ android {
buildConfig = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.4.7"
kotlinCompilerExtensionVersion = "1.4.8"
}
ksp {
arg("room.schemaLocation", "$projectDir/schemas")
Expand All @@ -110,7 +110,7 @@ dependencies {
implementation("androidx.lifecycle:lifecycle-service:$lifecycleVersion")

// Compose
val composeBomVersion = "2023.06.00"
val composeBomVersion = "2023.06.01"
implementation(platform("androidx.compose:compose-bom:$composeBomVersion"))
androidTestImplementation(platform("androidx.compose:compose-bom:$composeBomVersion"))
implementation("androidx.compose.ui:ui")
Expand All @@ -135,12 +135,12 @@ dependencies {
// Optional - Integration with ViewModels
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:$lifecycleVersion")
// Compose navigation
implementation("androidx.navigation:navigation-compose:2.5.3")
implementation("androidx.navigation:navigation-compose:2.6.0")

val accompanistVersion = "0.30.1"
implementation("com.google.accompanist:accompanist-permissions:$accompanistVersion")

val roomVersion = "2.5.1"
val roomVersion = "2.5.2"

implementation("androidx.room:room-runtime:$roomVersion")
implementation("androidx.room:room-ktx:$roomVersion")
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
plugins {
id("com.android.application") version "8.0.2" apply false
id("com.android.library") version "8.0.2" apply false
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
id("org.jetbrains.kotlin.android") version "1.8.22" apply false
id("com.google.dagger.hilt.android") version "2.46.1" apply false
id("com.google.devtools.ksp") version "1.8.21-1.0.11" apply false
id("com.google.devtools.ksp") version "1.8.22-1.0.11" apply false
}

0 comments on commit d58af5f

Please sign in to comment.