From 4f83fc2a6d0f5de91375154acfeeaf76e45c3d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Wed, 9 Nov 2022 07:35:47 +0100 Subject: [PATCH] fix(ios) fix uploading symbols to Crashlytics Since we no longer use bitcode we need to upload them when we build the app. --- ios/fastlane/Fastfile | 20 +++----------------- 1 file changed, 3 insertions(+), 17 deletions(-) diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index c077c77026..f76cfb136b 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -82,7 +82,7 @@ platform :ios do export_xcargs: "-allowProvisioningUpdates" ) - # Upload the build to TestFlight (but don't distribute it) + # Upload the build to TestFlight upload_to_testflight( beta_app_description: ENV["JITSI_CHANGELOG"], beta_app_feedback_email: ENV["JITSI_REVIEW_EMAIL"], @@ -102,24 +102,10 @@ platform :ios do uses_non_exempt_encryption: false ) + upload_symbols_to_crashlytics + # Cleanup clean_build_artifacts reset_git_repo(skip_clean: true) end - - lane :refresh_dsyms do - # Connect to Apple Store Connect - app_store_connect_api_key( - key_id: ENV["ASC_KEY_ID"], - issuer_id: ENV["ASC_ISSUER_ID"], - key_content: ENV["ASC_KEY_CONTENT"], - duration: 1200, - in_house: false - ) - - # Upload dSYMs to Crashlytics - download_dsyms(min_version: ENV["DSYMS_MIN_VERSION"]) # Download dSYM files from iTC - upload_symbols_to_crashlytics # Upload them to Crashlytics - clean_build_artifacts # Delete the local dSYM files - end end