Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/android.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÁlvaro Brey <alvaro.brey@nextcloud.com>2022-11-03 22:59:07 +0300
committerÁlvaro Brey <alvaro.brey@nextcloud.com>2022-11-03 22:59:07 +0300
commite924e10be2e20ee73066a18fb124765e290a0ef6 (patch)
tree0a6e0a28fb85fe972c9dcb87f5476922f34155b6
parent8f3d3771df35045ec66abacdbe3d0a1814cf8a26 (diff)
fastlane: add skip_upload_apk to play store config
If there is any .apk file in the root dir of the project (like one used for testing prior to release), the upload_to_play_store lane will pick it up and throw an error because it has both an APK and an AAB. To fix this, tell it to ignore any APKs and only use the provided AAB. Signed-off-by: Álvaro Brey <alvaro.brey@nextcloud.com>
-rw-r--r--fastlane/Fastfile1
1 files changed, 1 insertions, 0 deletions
diff --git a/fastlane/Fastfile b/fastlane/Fastfile
index 72fb4a941c..895c3aee14 100644
--- a/fastlane/Fastfile
+++ b/fastlane/Fastfile
@@ -292,6 +292,7 @@ desc "Upload to play store"
private_lane :uploadToPlaystore_Final do |options|
upload_to_play_store(
skip_upload_images: true,
+ skip_upload_apk: true,
aab: "release/app-gplay-release.aab"
)
end