The `.gitignore` file has been reorganized and expanded to include standard exclusions for build artifacts, Kotlin/Java project files, Android Studio metadata, keys/secrets, and OS-generated files.
37 lines
343 B
Plaintext
37 lines
343 B
Plaintext
# Build artifacts
|
|
bin/
|
|
gen/
|
|
out/
|
|
build/
|
|
app/build/
|
|
|
|
# Kotlin / Java
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
.gradle/
|
|
local.properties
|
|
|
|
# Android Studio
|
|
captures/
|
|
.externalNativeBuild/
|
|
.cxx/
|
|
.navigation/
|
|
|
|
# Keys & Secrets
|
|
*.jks
|
|
*.keystore
|
|
*.p12
|
|
google-services.json
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Bundle/Release
|
|
/app/release/
|