47df14c952
A fully local AI assistant for Android powered by Google's Gemma 4 models. Features: - Fully local inference (voice/image/text on-device) - Voice input with Voice Activity Detection - Image understanding with camera/gallery support - Text chat with markdown rendering - Gemma 4 via LiteRT-LM (E2B/E4B variants) - Model download manager - Session management with persistent history - Smart TTS with auto-detect mode - Device RAM info for model selection
10 lines
443 B
Kotlin
10 lines
443 B
Kotlin
// Root build.gradle.kts
|
|
plugins {
|
|
id("com.android.application") version "8.9.1" apply false
|
|
id("com.android.library") version "8.9.1" apply false
|
|
id("org.jetbrains.kotlin.android") version "2.3.20" apply false
|
|
id("org.jetbrains.kotlin.plugin.serialization") version "2.3.20" apply false
|
|
id("com.google.devtools.ksp") version "2.3.6" apply false
|
|
id("org.jetbrains.kotlin.plugin.compose") version "2.3.20" apply false
|
|
}
|