- OAuth authentication via Authentik - WebSocket connection to OpenClaw gateway - Configurable gateway URL with first-run setup - User preferences sync across devices - Multi-user support with custom assistant names - ElevenLabs TTS integration (local + remote) - FCM push notifications for alarms - Voice input via Google Speech API - No hardcoded secrets or internal IPs in tracked files
8 lines
379 B
Kotlin
8 lines
379 B
Kotlin
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
plugins {
|
|
id("com.android.application") version "8.2.0" apply false
|
|
id("org.jetbrains.kotlin.android") version "1.9.20" apply false
|
|
id("com.google.dagger.hilt.android") version "2.48" apply false
|
|
id("com.google.gms.google-services") version "4.4.0" apply false
|
|
}
|