From f391940495f40f00794214be5d1a440cc14a8915 Mon Sep 17 00:00:00 2001 From: Peter Stone Date: Sat, 14 Mar 2026 02:06:15 +0000 Subject: 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 --- android-app/.gitignore | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 android-app/.gitignore 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 -- cgit v1.2.3