diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6be518..c7ba0b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Java JDK - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: - java-version: 1.8 + java-version: "18" + distribution: "temurin" - name: Validate Gradle wrapper uses: gradle/wrapper-validation-action@v1 diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index 0fc3113..fe63bb6 100644 --- a/.idea/kotlinc.xml +++ b/.idea/kotlinc.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 5181fdf..c7b5f84 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.3.0" apply false - id("org.jetbrains.kotlin.android") version "1.8.10" apply false - id("com.android.library") version "8.3.0" apply false + id("com.android.application") version "8.2.0" apply false + id("org.jetbrains.kotlin.android") version "1.9.23" apply false + id("com.android.library") version "8.2.0" apply false id("com.gradleup.nmcp") version "0.0.4" apply true } diff --git a/example/build.gradle.kts b/example/build.gradle.kts index 843374d..c4e3eb3 100644 --- a/example/build.gradle.kts +++ b/example/build.gradle.kts @@ -37,7 +37,7 @@ android { compose = true } composeOptions { - kotlinCompilerExtensionVersion = "1.4.3" + kotlinCompilerExtensionVersion = "1.5.11" } lint { disable += "ObsoleteLintCustomCheck"