spb/ka-android
Public
Kotlin 100%
1// Auteur : Simon-Pierre Boucher — contact@spboucher.ai2plugins {3 id("com.android.application")4 id("org.jetbrains.kotlin.android")5 id("org.jetbrains.kotlin.plugin.compose")6 id("org.jetbrains.kotlin.plugin.serialization")7}89android {10 namespace = "com.groupeka.ka"11 compileSdk = 341213 defaultConfig {14 applicationId = "com.groupeka.ka"15 minSdk = 2616 targetSdk = 3417 versionCode = 418 versionName = "3.0.0"19 }2021 signingConfigs {22 create("release") {23 storeFile = rootProject.file("ka-release.keystore")24 storePassword = "ka-groupe-2026"25 keyAlias = "ka"26 keyPassword = "ka-groupe-2026"27 }28 }2930 buildTypes {31 release {32 isMinifyEnabled = false33 signingConfig = signingConfigs.getByName("release")34 }35 }36 compileOptions {37 sourceCompatibility = JavaVersion.VERSION_1738 targetCompatibility = JavaVersion.VERSION_1739 }40 kotlinOptions {41 jvmTarget = "17"42 }43 buildFeatures {44 compose = true45 }46}4748dependencies {49 val composeBom = platform("androidx.compose:compose-bom:2024.09.03")50 implementation(composeBom)51 implementation("androidx.compose.ui:ui")52 implementation("androidx.compose.material3:material3")53 implementation("androidx.compose.material:material-icons-extended")54 implementation("androidx.activity:activity-compose:1.9.2")55 implementation("androidx.navigation:navigation-compose:2.8.1")56 implementation("androidx.lifecycle:lifecycle-runtime-compose:2.8.6")57 implementation("io.coil-kt:coil-compose:2.7.0")58 implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")59 implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0")60 implementation("com.squareup.okhttp3:okhttp:4.12.0")61 implementation("androidx.browser:browser:1.8.0")62 implementation("androidx.core:core-ktx:1.13.1")63 implementation("org.maplibre.gl:android-sdk:10.3.1")6465 testImplementation("junit:junit:4.13.2")66 testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0")67}68