Releasable

This commit is contained in:
Philipp Heckel 2021-11-01 14:28:57 -04:00
parent c2059b5dfa
commit cfbac10c5e
2 changed files with 13 additions and 0 deletions

7
.gitignore vendored
View file

@ -1,6 +1,13 @@
# Google services (Firebase/FCM) config and keys # Google services (Firebase/FCM) config and keys
google-services.json google-services.json
# Signing keystore
.keystores/
.signing/
# Release
app/release/
# built application files # built application files
*.apk *.apk
*.ap_ *.ap_

View file

@ -19,7 +19,13 @@ android {
buildTypes { buildTypes {
release { release {
minifyEnabled true
debuggable false
}
debug {
minifyEnabled false minifyEnabled false
debuggable true
} }
} }