summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorAlbin <albin@mullvad.net>2022-01-04 12:17:53 +0100
committerAlbin <albin@mullvad.net>2022-01-04 12:17:56 +0100
commit2ee03440576ecfb8376c765eb7cf4aad85eb0b59 (patch)
tree6b6f03455779b1a9eb3ea5621feb586d967a1169 /android
parent36c4800f92d385debaf3ca01ecda664c5c1ab11b (diff)
downloadmullvadvpn-2ee03440576ecfb8376c765eb7cf4aad85eb0b59.tar.xz
mullvadvpn-2ee03440576ecfb8376c765eb7cf4aad85eb0b59.zip
Fix invalid path in Android release build
Fixes the invalid path to 'keystore.properties' introduced in the previous split of the android/root project and app module.
Diffstat (limited to 'android')
-rw-r--r--android/app/build.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 95f3b40d55..79603dd520 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -7,7 +7,7 @@ def repoRootPath = rootProject.projectDir.absoluteFile.parentFile.absolutePath
def extraAssetsDirectory = "$project.buildDir/extraAssets"
def extraJniDirectory = "$project.buildDir/extraJni"
-def keystorePropertiesFile = file('keystore.properties')
+def keystorePropertiesFile = file("$rootProject.projectDir/keystore.properties")
def keystoreProperties = new Properties()
if (keystorePropertiesFile.exists()) {