From 0496b94aa8ca12db5282e4a573065909fe489126 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Tue, 5 Jun 2018 19:54:53 +0530 Subject: 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 --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 74325146..3dde301c 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,5 @@ build/ *.class *.dex *.iml +*.jks +keystore.properties -- cgit v1.2.3-59-g8ed1b