Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

beta - compose update #72

Merged
merged 1 commit into from
Jun 16, 2024
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
beta - compose update
  • Loading branch information
taehwandev committed Jun 16, 2024
commit 15a1f9b7a66da79241d88c1cca521b725120ff55
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
compileSdk = libs.versions.compileSdk.get().toInt()

defaultConfig {
minSdk = libs.versions.minSdk.get().toInt()
minSdk = libs.versions.minSdk.get().toInt()
targetSdk = libs.versions.targetSdk.get().toInt()
versionCode = libs.versions.versionCode.get().toInt()
versionName = "${libs.versions.major.get()}.${libs.versions.minor.get()}.${libs.versions.hotfix.get()}"
Expand Down Expand Up @@ -50,7 +50,7 @@ android {
kotlinCompilerExtensionVersion = libs.versions.compose.compilerVersion.get()
}

packagingOptions {
packaging {
resources.excludes.addAll(
listOf(
"META-INF/AL2.0",
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ androidx-lifecycleVersion = "2.8.2"

## Compose
# https://developer.android.com/jetpack/androidx/releases/compose
compose = "1.6.8"
compose = "1.7.0-beta03"
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin
compose-compilerVersion = "1.5.14"

Expand Down
Loading