// Auteur : Simon-Pierre Boucher — contact@spboucher.ai plugins { id("com.android.application") id("org.jetbrains.kotlin.android") id("org.jetbrains.kotlin.plugin.compose") id("org.jetbrains.kotlin.plugin.serialization") } android { namespace = "com.groupeka.ka" compileSdk = 34 defaultConfig { applicationId = "com.groupeka.ka" minSdk = 26 targetSdk = 34 versionCode = 4 versionName = "3.0.0" } signingConfigs { create("release") { storeFile = rootProject.file("ka-release.keystore") storePassword = "ka-groupe-2026" keyAlias = "ka" keyPassword = "ka-groupe-2026" } } buildTypes { release { isMinifyEnabled = false signingConfig = signingConfigs.getByName("release") } } compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } kotlinOptions { jvmTarget = "17" } buildFeatures { compose = true } } dependencies { val composeBom = platform("androidx.compose:compose-bom:2024.09.03") implementation(composeBom) implementation("androidx.compose.ui:ui") implementation("androidx.compose.material3:material3") implementation("androidx.compose.material:material-icons-extended") implementation("androidx.activity:activity-compose:1.9.2") implementation("androidx.navigation:navigation-compose:2.8.1") implementation("androidx.lifecycle:lifecycle-runtime-compose:2.8.6") implementation("io.coil-kt:coil-compose:2.7.0") implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0") implementation("com.squareup.okhttp3:okhttp:4.12.0") implementation("androidx.browser:browser:1.8.0") implementation("androidx.core:core-ktx:1.13.1") implementation("org.maplibre.gl:android-sdk:10.3.1") testImplementation("junit:junit:4.13.2") testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0") }