Skip to content

Commit

Permalink
build: updates (#21)
Browse files Browse the repository at this point in the history
* perf: obsolete sdk check

Signed-off-by: Patryk Mis <[email protected]>

* chore: bump dependencies

Signed-off-by: Patryk Mis <[email protected]>

---------

Signed-off-by: Patryk Mis <[email protected]>
  • Loading branch information
PatrykMis authored May 13, 2023
1 parent 01847c9 commit 1e2fadb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
12 changes: 6 additions & 6 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,24 +36,24 @@ android {

buildFeatures.compose = true

composeOptions.kotlinCompilerExtensionVersion = "1.4.6"
composeOptions.kotlinCompilerExtensionVersion = "1.4.7"
}

dependencies {

// AndroidX Core
implementation("androidx.core:core-ktx:1.10.0")
implementation("androidx.core:core-ktx:1.10.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
implementation("androidx.core:core-splashscreen:1.0.1")
implementation("androidx.activity:activity-compose:1.7.1")
implementation("androidx.paging:paging-common-ktx:3.1.1")

// Compose
implementation(platform("androidx.compose:compose-bom:2023.05.00"))
implementation(platform("androidx.compose:compose-bom:2023.05.01"))
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material:material-icons-extended")
implementation("androidx.compose.material3:material3:1.1.0-rc01")
implementation("androidx.compose.material3:material3")

// Accompanist
//val accompanistVersion = "0.30.1"
Expand All @@ -64,7 +64,7 @@ dependencies {
//implementation("com.google.accompanist:accompanist-permissions:$accompanistVersion")

// Coil (async image loading, network image)
implementation("io.coil-kt:coil-compose:2.2.2")
implementation("io.coil-kt:coil-compose:2.3.0")

// KotlinX
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0")
Expand All @@ -87,4 +87,4 @@ dependencies {
implementation("io.ktor:ktor-client-content-negotiation:$ktorVersion")
implementation("io.ktor:ktor-serialization-kotlinx-json:$ktorVersion")

}
}
5 changes: 2 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
plugins {
id("com.android.application") version "8.0.0" apply false
id("com.android.library") version "8.0.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.20" apply false
id("com.android.application") version "8.0.1" apply false
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
}

0 comments on commit 1e2fadb

Please sign in to comment.