feat: add android thin client MVP

This commit is contained in:
ejclaw
2026-05-25 03:55:23 +09:00
parent 7fbcea30c4
commit 18a8892107
25 changed files with 947 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
android {
namespace = "com.ejclaw.android"
compileSdk = 36
defaultConfig {
applicationId = "com.ejclaw.android"
minSdk = 26
targetSdk = 36
versionCode = 1
versionName = "0.1.0"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
}
kotlin {
jvmToolchain(21)
}