From 74e00c674aec4edab8fbda8dfb9efc3dff6add77 Mon Sep 17 00:00:00 2001 From: James Pepper Date: Mon, 12 Jan 2026 18:57:23 +0000 Subject: [PATCH] Update .gitignore to exclude debug.keystore Modified .gitignore files to ignore android/app/debug.keystore and added debug.keystore to android/.gitignore. This prevents accidental commits of debug keystore files. --- .gitignore | 2 +- android/.gitignore | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4c451225..34fe159e 100644 --- a/.gitignore +++ b/.gitignore @@ -16,7 +16,7 @@ expo-env.d.ts *.p12 *.key *.keystore -!android/app/debug.keystore +android/app/debug.keystore *.mobileprovision # Metro diff --git a/android/.gitignore b/android/.gitignore index 8a6be077..e2a03957 100644 --- a/android/.gitignore +++ b/android/.gitignore @@ -14,3 +14,5 @@ local.properties # Bundle artifacts *.jsbundle + +debug.keystore