diff options
Diffstat (limited to 'android')
| -rw-r--r-- | android/build.gradle | 5 |
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 } |
