- Updated `.gitignore` and `.cursorignore` to exclude additional build artifacts and temporary files. - Enhanced `.cursorrules` with comprehensive AI guidelines and best practices. - Improved `.notes/directory_structure.md` to reflect the current project structure and module organization. - Updated `ARCHITECTURE.md` to include new insights on the system's modular design and privacy-first approach. - Refined `README.md` for clarity on project setup and usage instructions. - Added new entries in `.notes/meeting_notes.md` to document recent progress and decisions. - Ensured all changes align with the project's privacy and security standards.
77 lines
895 B
Plaintext
77 lines
895 B
Plaintext
# Build outputs
|
|
/build/
|
|
/app/build/
|
|
/out/
|
|
*.apk
|
|
*.aab
|
|
*.dex
|
|
|
|
# Gradle
|
|
.gradle/
|
|
gradle-8.2/
|
|
gradle-8.2-bin.zip
|
|
gradle-app.setting
|
|
.gradletasknamecache
|
|
|
|
# IDE files
|
|
/.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Logs
|
|
/logs/
|
|
*.log
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
/tmp/
|
|
*.tmp
|
|
*.bak
|
|
|
|
# Node modules (if any web tooling added)
|
|
/node_modules/
|
|
|
|
# Local config (keep local.properties as it's needed)
|
|
# Commented out: local.properties
|
|
|
|
# Test outputs
|
|
/test-results/
|
|
/test-reports/
|
|
|
|
# Android profiling
|
|
*.hprof
|
|
|
|
# Keystore files (never commit)
|
|
*.jks
|
|
*.keystore
|
|
|
|
# External native build
|
|
.externalNativeBuild/
|
|
.cxx/
|
|
|
|
# Captures folder (Android Studio)
|
|
captures/
|
|
|
|
# Lint
|
|
lint/
|
|
lint-results*.html
|
|
lint-results*.xml
|
|
|
|
# Don't index large dependency jars
|
|
*.jar
|
|
|
|
# Ignore machine-generated resource files
|
|
/app/build/generated/
|
|
/app/build/intermediates/
|
|
/app/build/kotlin/
|
|
/app/build/tmp/
|
|
|