Adds the sentry.properties file to .gitignore

This commit is contained in:
Maciej Surmacz
2022-08-10 17:06:49 +02:00
parent d4cc2c3cff
commit 226a56ba43
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -43,6 +43,9 @@ keystore/*
# Private properties
private.properties
# Sentry properties
sentry.properties
# Test users credentials
**/users.json
**/internal_api.json
+1 -1
View File
@@ -43,7 +43,7 @@ All `release` builds done on CI are automatically singed with ProtonMail's keyst
## Observability
Crashes and errors that happen in `release` (non debuggable) builds are reported to Sentry in an anonymised form.
The CI sets up the integration with Sentry by providing in the build environment `private.properties` and `sentry.properties` files that contains the secrets needed.
The CI sets up the integration with Sentry by providing in the build environment `private.properties` and `sentry.properties` files that contain the secrets needed.
This can as well be performed locally by creating `private.properties` and `sentry.properties` files (which will be ignored by git) and filling them with the needed secrets (eg. `SentryDSN`; for more details about the `sentry.properties` file, see https://docs.sentry.io/platforms/android/gradle/#proguardr8--dexguard).