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>
21 lines
455 B
Kotlin
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)
|
|
}
|