diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index f6fdbf5a8..8cc9f7e20 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -1,5 +1,6 @@ plugins { id("com.android.application") + id("org.jetbrains.kotlin.android") } android { @@ -12,10 +13,18 @@ android { targetSdk = 30 versionCode = 1 versionName = "1.0" + vectorDrawables { + useSupportLibrary = true + } } buildFeatures { aidl = true + compose = true + } + + composeOptions { + kotlinCompilerExtensionVersion = "1.5.4" } buildTypes { @@ -31,8 +40,27 @@ android { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } + kotlinOptions { + jvmTarget = "1.8" + } + packaging { + resources { + excludes += "/META-INF/{AL2.0,LGPL2.1}" + } + } } dependencies { + implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2") + implementation(platform("androidx.compose:compose-bom:2023.10.01")) + + implementation("androidx.compose.material3:material3") + implementation("androidx.activity:activity-compose:1.8.2") + + // Android Studio Preview support + implementation("androidx.compose.ui:ui-tooling-preview") + debugImplementation("androidx.compose.ui:ui-tooling") + debugImplementation("androidx.compose.ui:ui-test-manifest") + implementation("androidx.appcompat:appcompat:1.6.1") } \ No newline at end of file diff --git a/android/build.gradle.kts b/android/build.gradle.kts index c21801c71..1b4c7195f 100644 --- a/android/build.gradle.kts +++ b/android/build.gradle.kts @@ -1,4 +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.9.20" apply false } \ No newline at end of file