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
76 lines
797 B
Plaintext
76 lines
797 B
Plaintext
# Gradle
|
|
.gradle/
|
|
build/
|
|
!gradle/wrapper/gradle-wrapper.jar
|
|
!**/src/main/**/build/
|
|
!**/src/test/**/build/
|
|
|
|
# Local configuration
|
|
local.properties
|
|
*.properties
|
|
!.gradle.properties
|
|
!gradle.properties
|
|
|
|
# Android Studio
|
|
.idea/
|
|
*.iml
|
|
*.iws
|
|
*.ipr
|
|
.navigation/
|
|
captures/
|
|
.externalNativeBuild/
|
|
.cxx/
|
|
*.apk
|
|
*.ap_
|
|
*.aab
|
|
|
|
# macOS
|
|
.DS_Store
|
|
.AppleDouble
|
|
.LSOverride
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
Desktop.ini
|
|
|
|
# Linux
|
|
*~
|
|
.nfs*
|
|
|
|
# JetBrains
|
|
*.swp
|
|
*.swo
|
|
|
|
# Firebase/ google-services
|
|
google-services.json
|
|
|
|
# Keystore files
|
|
*.jks
|
|
*.keystore
|
|
|
|
# Output JSON files generated by the Android Gradle plugin
|
|
output.json
|
|
|
|
# Build outputs
|
|
**/build/
|
|
app/release/
|
|
app/debug/
|
|
!app-release.apk
|
|
!sleepy-agent-*.apk
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
|
|
# Test outputs
|
|
test-results/
|
|
screenshots/
|
|
|
|
# Coverage
|
|
*.ec
|
|
|
|
# NDK
|
|
obj/
|