From 463e9b6258e8722cf12d11897dd2adf32d439d9c Mon Sep 17 00:00:00 2001 From: "Maurice L." Date: Fri, 27 Feb 2026 19:26:25 +0100 Subject: [PATCH] Updated .gitignore 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. --- .gitignore | 45 ++++++++++++++++++++++++++++++++++----------- 1 file changed, 34 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index a30726a..4c24ab8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,36 @@ +# Build artifacts +bin/ +gen/ +out/ +build/ +app/build/ + +# Kotlin / Java *.iml -.gradle -/local.properties -/.idea -.DS_Store -/build -/captures -.externalNativeBuild -.cxx +*.ipr +*.iws +.idea/ +.gradle/ local.properties -/app/build -/.jks -/app/release \ No newline at end of file + +# 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/