summaryrefslogtreecommitdiff
path: root/android-app/.gitignore
diff options
context:
space:
mode:
authorPeter Stone <thepeterstone@gmail.com>2026-03-14 02:06:15 +0000
committerPeter Stone <thepeterstone@gmail.com>2026-03-14 02:06:15 +0000
commitf391940495f40f00794214be5d1a440cc14a8915 (patch)
tree63f3b1c9f98144778aae2786d426672cb61f8068 /android-app/.gitignore
parent010d25c3e7e37ba109117a93e4d1c0f8802b01a9 (diff)
chore: add .gitignore and exclude gradle caches from tracking
Adds .gitignore to prevent .gradle/ and .gradle_home/ directories (which contain large compiler JARs) from being tracked in git. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'android-app/.gitignore')
-rw-r--r--android-app/.gitignore26
1 files changed, 26 insertions, 0 deletions
diff --git a/android-app/.gitignore b/android-app/.gitignore
new file mode 100644
index 0000000..7db1cd2
--- /dev/null
+++ b/android-app/.gitignore
@@ -0,0 +1,26 @@
+# Gradle build outputs and caches
+.gradle/
+.gradle_home/
+build/
+**/build/
+
+# Android Studio / IntelliJ
+.idea/
+*.iml
+*.ipr
+*.iws
+local.properties
+
+# Generated files
+app/src/main/assets/
+
+# Keystore
+*.jks
+*.keystore
+
+# Log files
+*.log
+
+# OS
+.DS_Store
+Thumbs.db