summaryrefslogtreecommitdiffhomepage
path: root/android
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-07 23:44:22 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-02-13 10:49:32 +0000
commit37aa0f207122158269de28f373416fa5ff56b7b9 (patch)
treeb60bd8a357711903ba742424c710aadea283082c /android
parenteedb42459e1404784ba90a6926ded606d35dc00e (diff)
downloadmullvadvpn-37aa0f207122158269de28f373416fa5ff56b7b9.tar.xz
mullvadvpn-37aa0f207122158269de28f373416fa5ff56b7b9.zip
Include `relays.json` in APK
Diffstat (limited to 'android')
-rw-r--r--android/build.gradle5
1 files changed, 3 insertions, 2 deletions
diff --git a/android/build.gradle b/android/build.gradle
index 0e41b32f69..7648e212ab 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -59,7 +59,7 @@ android {
applicationVariants.all { variant ->
variant.mergeAssetsProvider.configure {
- dependsOn copyApiRootCertificate
+ dependsOn copyExtraAssets
}
}
}
@@ -108,8 +108,9 @@ task format(type: FormatTask, group: 'formatting') {
lint.dependsOn lintKotlin
-task copyApiRootCertificate(type: Copy) {
+task copyExtraAssets(type: Copy) {
from "$repoRootPath/dist-assets"
include "api_root_ca.pem"
+ include "relays.json"
into extraAssetsDirectory
}