diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2018-06-05 19:54:53 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2018-06-05 19:58:34 +0530 |
commit | 0496b94aa8ca12db5282e4a573065909fe489126 (patch) | |
tree | ebfa380757b0abd90157984ae19d081a393b9cbc /.gitignore | |
parent | d8d6e99df138069aec60895947ff44ccd392c067 (diff) |
build: Allow building release artifacts in-tree
This change avoids all need for changing any file under
VCS to insert signing keys and configs for release builds.
Example contents of keystore.properties
```
// Location of keystore, relative to module build.gradle,
// in this case, of the app module
storeFile=../wireguard.jks
storePassword=b3ty0uc4nth4xxth1s
keyAlias=wireguard
keyPassword=4ndr01dsux
```
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -13,3 +13,5 @@ build/ *.class *.dex *.iml +*.jks +keystore.properties |