mirror of
https://github.com/frido22/cellclaw
synced 2026-05-10 22:43:50 +00:00
Five new feature areas: - Screenshot capture via a11y service + vision analysis tool with ContentBlock.Image support across all providers (Anthropic, OpenAI, Gemini) - Notification listener service with query/filter and auto-trigger agent on app notifications - Cron scheduler using WorkManager with periodic and one-shot scheduled tasks (Room DB v2) - Messaging automation tools for opening, reading, and replying in WhatsApp/Telegram/Instagram - Voice input (SpeechRecognizer STT) and output (TextToSpeech TTS) with settings toggles Includes 8 new instrumented tests and smart_reply skill asset. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
85 lines
3.9 KiB
TOML
85 lines
3.9 KiB
TOML
[versions]
|
|
agp = "8.7.3"
|
|
kotlin = "2.1.0"
|
|
ksp = "2.1.0-1.0.29"
|
|
coroutines = "1.9.0"
|
|
compose-bom = "2024.12.01"
|
|
activity-compose = "1.9.3"
|
|
lifecycle = "2.8.7"
|
|
navigation = "2.8.5"
|
|
room = "2.6.1"
|
|
hilt = "2.53.1"
|
|
hilt-navigation = "1.2.0"
|
|
okhttp = "4.12.0"
|
|
retrofit = "2.11.0"
|
|
serialization = "1.7.3"
|
|
biometric = "1.1.0"
|
|
work = "2.10.0"
|
|
hilt-work = "1.2.0"
|
|
camera = "1.4.1"
|
|
location = "21.3.0"
|
|
|
|
[libraries]
|
|
# Kotlin
|
|
kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "coroutines" }
|
|
kotlinx-serialization-json = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "serialization" }
|
|
|
|
# Compose
|
|
compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "compose-bom" }
|
|
compose-ui = { group = "androidx.compose.ui", name = "ui" }
|
|
compose-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
|
|
compose-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
|
|
compose-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
|
|
compose-material3 = { group = "androidx.compose.material3", name = "material3" }
|
|
compose-material-icons = { group = "androidx.compose.material", name = "material-icons-extended" }
|
|
activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activity-compose" }
|
|
|
|
# Lifecycle
|
|
lifecycle-runtime = { group = "androidx.lifecycle", name = "lifecycle-runtime-compose", version.ref = "lifecycle" }
|
|
lifecycle-viewmodel = { group = "androidx.lifecycle", name = "lifecycle-viewmodel-compose", version.ref = "lifecycle" }
|
|
|
|
# Navigation
|
|
navigation-compose = { group = "androidx.navigation", name = "navigation-compose", version.ref = "navigation" }
|
|
|
|
# Room
|
|
room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
|
|
room-ktx = { group = "androidx.room", name = "room-ktx", version.ref = "room" }
|
|
room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "room" }
|
|
|
|
# Hilt
|
|
hilt-android = { group = "com.google.dagger", name = "hilt-android", version.ref = "hilt" }
|
|
hilt-compiler = { group = "com.google.dagger", name = "hilt-compiler", version.ref = "hilt" }
|
|
hilt-navigation-compose = { group = "androidx.hilt", name = "hilt-navigation-compose", version.ref = "hilt-navigation" }
|
|
|
|
# Network
|
|
okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
|
|
okhttp-sse = { group = "com.squareup.okhttp3", name = "okhttp-sse", version.ref = "okhttp" }
|
|
retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit" }
|
|
|
|
# Biometric
|
|
biometric = { group = "androidx.biometric", name = "biometric", version.ref = "biometric" }
|
|
|
|
# WorkManager
|
|
work-runtime = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "work" }
|
|
hilt-work = { group = "androidx.hilt", name = "hilt-work", version.ref = "hilt-work" }
|
|
hilt-work-compiler = { group = "androidx.hilt", name = "hilt-compiler", version.ref = "hilt-work" }
|
|
|
|
# Camera
|
|
camera-core = { group = "androidx.camera", name = "camera-core", version.ref = "camera" }
|
|
camera-camera2 = { group = "androidx.camera", name = "camera-camera2", version.ref = "camera" }
|
|
camera-lifecycle = { group = "androidx.camera", name = "camera-lifecycle", version.ref = "camera" }
|
|
|
|
# Location
|
|
location = { group = "com.google.android.gms", name = "play-services-location", version.ref = "location" }
|
|
|
|
# AndroidX Core
|
|
core-ktx = { group = "androidx.core", name = "core-ktx", version = "1.15.0" }
|
|
|
|
[plugins]
|
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
|
|
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|