43 lines
1.0 KiB
Plaintext
43 lines
1.0 KiB
Plaintext
# ---------------------------------------------------------------------------
|
|
# Secrets. docs/security/SECURITY.md is the rule; this is the safety net, and
|
|
# it is not a substitute for reading that file.
|
|
#
|
|
# The upload keystore is the one secret here whose loss is permanent in BOTH
|
|
# directions: lost means this app can never be updated again, leaked means
|
|
# somebody else can sign as us. It cannot be rotated once the app is published.
|
|
# ---------------------------------------------------------------------------
|
|
local.properties
|
|
*.jks
|
|
*.keystore
|
|
keystore.properties
|
|
play-service-account*.json
|
|
.env
|
|
.env.*
|
|
|
|
# Gradle and Android build output
|
|
.gradle/
|
|
build/
|
|
# Eclipse/Buildship writes duplicate sources here for the pure-JVM modules. It
|
|
# is build output that looks exactly like source, and it slipped into a commit
|
|
# once before this line existed.
|
|
bin/
|
|
captures/
|
|
.cxx/
|
|
*.apk
|
|
*.aab
|
|
*.ap_
|
|
*.dex
|
|
output.json
|
|
|
|
# Python bytecode from the scripts in scripts/
|
|
__pycache__/
|
|
*.py[cod]
|
|
|
|
# Editor and OS cruft
|
|
.DS_Store
|
|
.idea/
|
|
*.iml
|
|
.vscode/
|
|
*.swp
|
|
*~
|