// ───────────────────────────────────────────────────────────────────────────── // :app — the Android application (Compose UI, ViewModels, Hilt DI, FCM push, // DeepLinkRouter, DesignSystem, EventBus). Mirrors iOS App/WebTerm. // // SCAFFOLD STUB ONLY. This module is COMMENTED OUT in settings.gradle.kts because // this build environment has NO Android SDK. The block below is the intended shape; // it applies the Android Gradle Plugin, which cannot resolve without an SDK. // // TODO(android-sdk): uncomment the include in settings.gradle.kts AND this block, // add AGP + google() to pluginManagement, and provide local.properties -> sdk.dir. // ───────────────────────────────────────────────────────────────────────────── /* plugins { id("com.android.application") alias(libs.plugins.kotlin.android) alias(libs.plugins.kotlin.serialization) id("com.google.dagger.hilt.android") id("com.google.gms.google-services") } android { namespace = "wang.yaojia.webterm" compileSdk = 35 defaultConfig { applicationId = "wang.yaojia.webterm" minSdk = 29 targetSdk = 35 versionCode = 1 versionName = "0.1.0" } buildFeatures { compose = true } } kotlin { jvmToolchain(17) } dependencies { implementation(project(":wire-protocol")) implementation(project(":session-core")) implementation(project(":api-client")) implementation(project(":client-tls")) implementation(project(":client-tls-android")) implementation(project(":host-registry")) implementation(project(":terminal-view")) } */