110 lines
3.5 KiB
Kotlin
110 lines
3.5 KiB
Kotlin
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.plugin.compose")
|
|
id("com.google.devtools.ksp")
|
|
}
|
|
|
|
android {
|
|
namespace = "com.crsmthw.phase10tracker"
|
|
compileSdk = 37
|
|
|
|
defaultConfig {
|
|
applicationId = "com.crsmthw.phase10tracker"
|
|
minSdk = 35
|
|
targetSdk = 37
|
|
versionCode = 5
|
|
versionName = "3.0.1"
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
vectorDrawables {
|
|
useSupportLibrary = true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|
|
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
|
|
packaging {
|
|
resources {
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
// Compose BOM — pins all stable Compose versions
|
|
val composeBom = platform("androidx.compose:compose-bom:2026.04.01")
|
|
implementation(composeBom)
|
|
androidTestImplementation(composeBom)
|
|
|
|
// Core Compose
|
|
implementation("androidx.compose.ui:ui")
|
|
implementation("androidx.compose.ui:ui-graphics")
|
|
implementation("androidx.compose.ui:ui-tooling-preview")
|
|
debugImplementation("androidx.compose.ui:ui-tooling")
|
|
debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
|
|
// Material 3 Expressive — alpha for full M3 Expressive API surface
|
|
implementation("androidx.compose.material3:material3:1.5.0-alpha19")
|
|
implementation("androidx.compose.material:material-icons-core")
|
|
implementation("androidx.compose.material:material-icons-extended")
|
|
|
|
// Adaptive layouts (for foldable / tablet)
|
|
implementation("androidx.compose.material3.adaptive:adaptive:1.2.0")
|
|
implementation("androidx.compose.material3.adaptive:adaptive-layout:1.2.0")
|
|
implementation("androidx.compose.material3.adaptive:adaptive-navigation:1.2.0")
|
|
|
|
// Activity & Window
|
|
implementation("androidx.activity:activity-compose:1.13.0")
|
|
implementation("androidx.core:core-ktx:1.18.0")
|
|
implementation("androidx.window:window:1.5.1")
|
|
|
|
// Lifecycle / ViewModel
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.10.0")
|
|
implementation("androidx.lifecycle:lifecycle-viewmodel-compose:2.10.0")
|
|
implementation("androidx.lifecycle:lifecycle-runtime-compose:2.10.0")
|
|
|
|
// Navigation
|
|
implementation("androidx.navigation:navigation-compose:2.9.8")
|
|
|
|
// Room (local DB for persistent state)
|
|
implementation("androidx.room:room-runtime:2.8.4")
|
|
implementation("androidx.room:room-ktx:2.8.4")
|
|
ksp("androidx.room:room-compiler:2.8.4")
|
|
|
|
// DataStore (for simple prefs)
|
|
implementation("androidx.datastore:datastore-preferences:1.2.1")
|
|
|
|
// Coroutines
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0")
|
|
|
|
// Serialization
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.11.0")
|
|
|
|
// Drag-to-reorder for LazyColumn
|
|
implementation("sh.calvin.reorderable:reorderable:3.1.0")
|
|
|
|
// Test
|
|
testImplementation("junit:junit:4.13.2")
|
|
androidTestImplementation("androidx.test.ext:junit:1.3.0")
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0")
|
|
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
}
|