Skip to content

Commit

Permalink
updated to compose 1.7.-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjenx committed Oct 2, 2024
1 parent 155f325 commit 7d4ddf7
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
7 changes: 3 additions & 4 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,11 @@ with(emailValiator) {

## Dependencies

By default we publish
By default we publish
to [Maven Central](https://central.sonatype.com/artifact/com.chrisjenx.yakcov/library).

We publish all targets (Android, JVM, JS, Wasm, iOS) you can include the common library in your
project and
it will pull in the correct target for what ever targets you have specified.
project and it will pull in the correct target for what ever targets you have specified.

```kotlin
commonMain {
Expand All @@ -74,4 +73,4 @@ dependencies {
## Testing

- You will need Chrome installed for JS based tests to run
- run tests with `./gradlew :library:test`
- run tests with `./gradlew :library:allTests`
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[versions]

kotlin = "2.0.20"
compose = "1.7.0-beta02"
agp = "8.6.0"
compose = "1.7.0-rc01"
agp = "8.6.1"
androidx-activityCompose = "1.9.2"
androidx-uiTest = "1.7.0"
androidx-uiTest = "1.7.3"
kotlinx-datetime = "0.6.1"
libphonenumberJvm = "8.13.45"
libphonenumberJvm = "8.13.47"
libphonenumberAndroid = "8.13.35"
coreKtx = "1.13.1"
junit = "4.13.2"
junitVersion = "1.2.1"
espressoCore = "3.6.1"
lifecycleRuntimeKtx = "2.8.5"
composeBom = "2024.09.00"
lifecycleRuntimeKtx = "2.8.6"
composeBom = "2024.09.02"

[libraries]
androidx-activityCompose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" }
Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ kotlin {
}

androidMain.dependencies {
implementation(compose.uiTooling)
compileOnly(compose.uiTooling)
implementation(libs.androidx.activityCompose)
implementation(libs.libphonenumber.android)
}
Expand All @@ -99,7 +99,7 @@ kotlin {

jsMain.dependencies {
implementation(compose.html.core)
implementation(npm("libphonenumber-js", "1.11.4"))
implementation(npm("libphonenumber-js", "1.11.10"))
}

iosMain.dependencies {
Expand Down

0 comments on commit 7d4ddf7

Please sign in to comment.