From 1f90503104c1b3ddeffd9b5ed2ce175d93d4e4b6 Mon Sep 17 00:00:00 2001 From: Guido Schmit Date: Mon, 13 Jul 2026 19:16:42 +0200 Subject: [PATCH] chore(android): git-ignore keystore.properties + add example Co-Authored-By: Claude Opus 4.8 --- .gitignore | 1 + keystore.properties.example | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 keystore.properties.example diff --git a/.gitignore b/.gitignore index 6403640..aa2ed15 100644 --- a/.gitignore +++ b/.gitignore @@ -38,6 +38,7 @@ captures/ # Keystore files *.jks *.keystore +keystore.properties # macOS .DS_Store diff --git a/keystore.properties.example b/keystore.properties.example new file mode 100644 index 0000000..7f7a5a0 --- /dev/null +++ b/keystore.properties.example @@ -0,0 +1,9 @@ +# Copy this file to "keystore.properties" (git-ignored) and fill in your real +# values to enable a signed release build: ./gradlew bundleRelease +# +# storeFile: ABSOLUTE path to your upload keystore (.jks). Keep the keystore and +# this filled-in file OUT of version control (both are git-ignored). +storeFile=/absolute/path/to/upload-keystore.jks +storePassword=CHANGE_ME +keyAlias=upload +keyPassword=CHANGE_ME