diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 89763e39..71ea9092 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,16 +17,16 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: JDK setup - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: java-version: 17 distribution: corretto - name: Cache konan directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.konan key: ${{ runner.os }}-konan-${{ hashFiles('*.gradle.kts', 'buildSrc/*') }} diff --git a/.gitignore b/.gitignore index 04ca0e6a..28887f32 100644 --- a/.gitignore +++ b/.gitignore @@ -98,4 +98,6 @@ Preview.html screenshots/**/*.png test_output -*.env* \ No newline at end of file +*.env* + +.kotlin \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 8ca93a52..1f60fe25 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -1,13 +1,14 @@ [versions] -kotlin = "1.9.23" -agp = "8.3.2" -core-ktx = "1.13.0" -compose = "1.6.2" +kotlin = "1.9.24" +agp = "8.4.1" +core-ktx = "1.13.1" +compose = "1.6.10" compose-activity = "1.9.0" spotless = "6.25.0" kotlin-compatibility = "0.14.0" dokka = "1.9.20" gradleMavenPublish = "0.28.0" +nmcp = "0.0.7" [libraries] androidx-core-ktx = { module = "androidx.core:core-ktx", version.ref = "core-ktx" } @@ -25,4 +26,4 @@ jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } kotlin-compatibility = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version.ref = "kotlin-compatibility" } dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } gradleMavenPublish = { id = "com.vanniktech.maven.publish", version.ref = "gradleMavenPublish" } -nmcp = { id = "com.gradleup.nmcp", version = "0.0.4" } \ No newline at end of file +nmcp = { id = "com.gradleup.nmcp", version.ref = "nmcp" } \ No newline at end of file diff --git a/sample/android/build.gradle.kts b/sample/android/build.gradle.kts index 4f7a779b..3808c6ef 100644 --- a/sample/android/build.gradle.kts +++ b/sample/android/build.gradle.kts @@ -57,7 +57,7 @@ android { } composeOptions { - kotlinCompilerExtensionVersion = "1.5.11" + kotlinCompilerExtensionVersion = "1.5.14" } packaging { resources {