6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 13c6f247
Changed files
azure/templates/build-android.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
Diff
diff --git a/azure/templates/build-android.yml b/azure/templates/build-android.yml
index 8921c66a..dc4c60f7 100644
--- a/azure/templates/build-android.yml
+++ b/azure/templates/build-android.yml
@@ -23,10 +23,10 @@ parameters:
# replace "key.jks" with your secure file name
- task: DownloadSecureFile@1
- name: key
+ name: comwell_keystore
displayName: Download signing key
inputs:
- secureFile: 'key.jks'
+ secureFile: 'comwell_keystore.jks'
# adjust paths and file names here
- task: Bash@3
@@ -35,10 +35,10 @@ parameters:
targetType: 'inline'
script: |
cp $(keyprop.secureFilePath) $(Build.SourcesDirectory)/android/key.properties
- cp $(key.secureFilePath) $(Build.SourcesDirectory)/android/app/key.jks
+ cp $(key.secureFilePath) $(Build.SourcesDirectory)/android/app/comwell_keystore.jks
echo "key.properties copied to $(Build.SourcesDirectory)/android/key.properties"
- echo "key.jks copied to $(Build.SourcesDirectory)/android/app/key.jks"
+ echo "key.jks copied to $(Build.SourcesDirectory)/android/app/comwell_keystore.jks"
# Download secure file from azure library
- task: DownloadSecureFile@1