diff --git a/.idea/kotlinc.xml b/.idea/kotlinc.xml index 0fc3113..f8467b4 100644 --- a/.idea/kotlinc.xml +++ b/.idea/kotlinc.xml @@ -1,6 +1,6 @@ - \ No newline at end of file diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 4142950..de6c85f 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -30,17 +30,17 @@ android { } } compileOptions { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 } kotlinOptions { - jvmTarget = "1.8" + jvmTarget = "11" } buildFeatures { compose = true } composeOptions { - kotlinCompilerExtensionVersion = "1.4.3" + kotlinCompilerExtensionVersion = "1.4.5" } packaging { resources { @@ -51,21 +51,21 @@ android { dependencies { val composeBom = platform("androidx.compose:compose-bom:2023.10.00") - implementation(composeBom) - androidTestImplementation(composeBom) + implementation("androidx.compose:compose-bom:2023.10.01") + androidTestImplementation("androidx.compose:compose-bom:2023.10.01") implementation("androidx.core:core-ktx:1.12.0") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2") implementation("androidx.activity:activity-compose:1.8.0") implementation("androidx.navigation:navigation-compose:2.7.4") - implementation("androidx.compose.ui:ui") - implementation("androidx.compose.ui:ui-graphics") - implementation("androidx.compose.ui:ui-tooling-preview") - implementation("androidx.compose.material3:material3") + implementation("androidx.compose.ui:ui:1.6.0-alpha08") + implementation("androidx.compose.ui:ui-graphics:1.6.0-alpha08") + implementation("androidx.compose.ui:ui-tooling-preview:1.6.0-alpha08") + implementation("androidx.compose.material3:material3:1.2.0-alpha10") testImplementation("junit:junit:4.13.2") androidTestImplementation("androidx.test.ext:junit:1.1.5") androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") - androidTestImplementation("androidx.compose.ui:ui-test-junit4") - debugImplementation("androidx.compose.ui:ui-tooling") - debugImplementation("androidx.compose.ui:ui-test-manifest") + androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.0-alpha08") + debugImplementation("androidx.compose.ui:ui-tooling:1.6.0-alpha08") + debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.0-alpha08") } \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index b4cf450..914c55c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { id("com.android.application") version "8.1.2" apply false - id("org.jetbrains.kotlin.android") version "1.8.10" apply false + id("org.jetbrains.kotlin.android") version "1.9.10" apply false } \ No newline at end of file