picoclaw/android/backend/api/build.gradle.kts
Kohei 5238d5a668 feat: add :backend:api module with interfaces and models (Step 2)
Add the backend API module skeleton with BackendLifecycle interface,
BackendState enum, NoopBackendLifecycle, GatewaySettings, and
GatewaySettingsStore for the dual-flavor architecture.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-26 19:05:00 +09:00

21 lines
455 B
Kotlin

plugins {
alias(libs.plugins.android.library)
}
android {
namespace = "io.clawdroid.backend.api"
compileSdk = libs.versions.android.compileSdk.get().toInt()
defaultConfig {
minSdk = libs.versions.android.minSdk.get().toInt()
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
dependencies {
implementation(libs.coroutines.android)
}