Releasable
This commit is contained in:
parent
c2059b5dfa
commit
cfbac10c5e
2 changed files with 13 additions and 0 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -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_
|
||||||
|
|
|
@ -19,7 +19,13 @@ android {
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
|
minifyEnabled true
|
||||||
|
debuggable false
|
||||||
|
}
|
||||||
|
|
||||||
|
debug {
|
||||||
minifyEnabled false
|
minifyEnabled false
|
||||||
|
debuggable true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue