|
|
|
@ -10,6 +10,9 @@
|
|
|
|
|
# https://docs.fastlane.tools/plugins/available-plugins
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1723116829
|
|
|
|
|
ENV['SUPPLY_UPLOAD_MAX_RETRIES']='5'
|
|
|
|
|
|
|
|
|
|
# Uncomment the line if you want fastlane to automatically update itself
|
|
|
|
|
update_fastlane
|
|
|
|
|
|
|
|
|
@ -45,10 +48,6 @@ platform :android do
|
|
|
|
|
track: 'internal',
|
|
|
|
|
aab: '../build/app/outputs/bundle/release/app-release.aab',
|
|
|
|
|
version_code: "#{last_version+1}",
|
|
|
|
|
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
|
|
|
|
|
root_url: "https://androidpublisher.googleapis.com/",
|
|
|
|
|
skip_upload_images: true,
|
|
|
|
|
skip_upload_screenshots: true
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
@ -58,10 +57,6 @@ platform :android do
|
|
|
|
|
track_promote_to: "beta",
|
|
|
|
|
deactivate_on_promote: false,
|
|
|
|
|
skip_upload_changelogs: true,
|
|
|
|
|
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
|
|
|
|
|
root_url: "https://androidpublisher.googleapis.com/",
|
|
|
|
|
skip_upload_images: true,
|
|
|
|
|
skip_upload_screenshots: true
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
@ -71,10 +66,6 @@ platform :android do
|
|
|
|
|
track_promote_to: "production",
|
|
|
|
|
deactivate_on_promote: false,
|
|
|
|
|
skip_upload_changelogs: true,
|
|
|
|
|
# Workaround for https://github.com/fastlane/fastlane/issues/21507#issuecomment-1720229951
|
|
|
|
|
root_url: "https://androidpublisher.googleapis.com/",
|
|
|
|
|
skip_upload_images: true,
|
|
|
|
|
skip_upload_screenshots: true
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|