From eb3dc3d893afd065ad2b62c53ea68fb01d12e1e4 Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Wed, 19 Aug 2026 08:31:44 -0400 Subject: [PATCH] gitignore: don't let a downloaded APK into history MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Debug APKs get pulled into the working tree for emulator testing. They are ~57 MB and come from CI artifacts, so they are never a source — but nothing stopped `git add -A` from committing one permanently. Co-Authored-By: Claude Opus 5 (1M context) --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index c22f3c4..9ac56d9 100644 --- a/.gitignore +++ b/.gitignore @@ -189,3 +189,10 @@ android/build/ android/app/build/ android/local.properties .kotlin/ + +# Locally-downloaded APKs for emulator/device testing. +# +# CI builds these and attaches them to the run as artifacts; a copy sitting in +# the working tree is a convenience, never a source. Ignored because they are +# ~57 MB and `git add -A` would otherwise put one in history forever. +*.apk