From edb76af8206d4c9f011087d9b5811fdc74fb764c Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Fri, 20 Mar 2020 20:12:22 +0530 Subject: [PATCH] build: Load keystore file from rootProject Since the signing config is also stored in the project root it makes sense to have storeFile path be relative to it. Signed-off-by: Harsh Shandilya --- ui/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/build.gradle b/ui/build.gradle index 4a30a53a..d9f20d3d 100644 --- a/ui/build.gradle +++ b/ui/build.gradle @@ -41,7 +41,7 @@ android { release { keyAlias keystoreProperties['keyAlias'] keyPassword keystoreProperties['keyPassword'] - storeFile file(keystoreProperties['storeFile']) + storeFile rootProject.file(keystoreProperties['storeFile']) storePassword keystoreProperties['storePassword'] } }