Skip to content
This repository has been archived by the owner on May 7, 2023. It is now read-only.

Commit

Permalink
Update Compose to 1.3.0-beta02
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyant0 committed Sep 8, 2022
1 parent a9f7221 commit a9c9ee1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

[Interactive demo](https://Kyant0.github.io/Monet)

Compose version: 1.3.0-beta01
Compose version: 1.3.0-beta02

## Usages

Expand Down
10 changes: 5 additions & 5 deletions demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.3.0-beta01"
kotlinCompilerExtensionVersion = "1.3.1"
}
packagingOptions {
resources {
Expand All @@ -52,11 +52,11 @@ dependencies {
implementation(project(":lib"))
implementation("androidx.core:core-ktx:1.8.0")
implementation("androidx.activity:activity-compose:1.5.1")
implementation("androidx.compose.ui:ui:1.3.0-beta01")
implementation("androidx.compose.material3:material3:1.0.0-beta01")
implementation("androidx.compose.ui:ui:1.3.0-beta02")
implementation("androidx.compose.material3:material3:1.0.0-beta02")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0-alpha07")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.3.0-beta01")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.3.0-beta01")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.3.0-beta02")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.3.0-beta02")
}
10 changes: 5 additions & 5 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ android {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.3.0-beta01"
kotlinCompilerExtensionVersion = "1.3.1"
}
}

dependencies {
implementation("androidx.compose.ui:ui:1.3.0-beta01")
implementation("androidx.compose.material3:material3:1.0.0-beta01")
implementation("androidx.compose.ui:ui:1.3.0-beta02")
implementation("androidx.compose.material3:material3:1.0.0-beta02")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.3")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.0-alpha07")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.3.0-beta01")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.3.0-beta01")
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.3.0-beta02")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.3.0-beta02")
}

afterEvaluate {
Expand Down

0 comments on commit a9c9ee1

Please sign in to comment.