initial android app snapshot

This commit is contained in:
Xisheng-Zhao
2026-05-17 04:20:20 +08:00
commit 4a0c8c8b8b
35 changed files with 36287 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
plugins {
id "com.android.application"
id "org.jetbrains.kotlin.android"
id "org.jetbrains.kotlin.plugin.compose"
}
android {
namespace "ai.multica.app"
compileSdk 36
buildToolsVersion "36.1.0"
defaultConfig {
applicationId "ai.multica.app"
minSdk 24
targetSdk 36
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
buildFeatures {
compose true
}
}
dependencies {
implementation platform("androidx.compose:compose-bom:2024.10.01")
implementation "androidx.activity:activity-compose:1.9.3"
implementation "androidx.compose.foundation:foundation"
implementation "androidx.compose.material3:material3"
implementation "androidx.compose.material:material-icons-extended"
implementation "androidx.compose.ui:ui"
implementation "androidx.compose.ui:ui-tooling-preview"
implementation "io.github.alexzhirkevich:cupertino:0.1.0-alpha04"
implementation "dev.chrisbanes.haze:haze:1.6.10"
implementation "com.airbnb.android:lottie-compose:6.7.1"
implementation "io.coil-kt:coil-compose:2.7.0"
testImplementation "junit:junit:4.13.2"
testImplementation "org.json:json:20240303"
androidTestImplementation "androidx.test:runner:1.6.2"
androidTestImplementation "androidx.test.ext:junit:1.2.1"
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.3.0"
debugImplementation "androidx.compose.ui:ui-tooling"
}