From 60f1b22923b12be97b7b9628591b8d2dcb2a65c6 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 29 Apr 2025 15:39:06 +1000 Subject: [PATCH] Use development provisioning profiles managed without Fastlane We have internal tooling to manage those in a way that does not require developers to set up Ruby for local every-day work. Internal refs: - pdnsEh-1ZG-p2 - https://linear.app/a8c/issue/AINFRA-245 --- fastlane/Fastfile | 5 ----- ios/App/App/Debug.xcconfig | 4 ++-- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 9b2afde..8c14526 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -101,16 +101,11 @@ platform :ios do lane :set_up_code_signing do |readonly: true| set_up_code_signing_app_store(readonly: readonly) - set_up_code_signing_deveploment(readonly: readonly) end lane :set_up_code_signing_app_store do |readonly: true| set_up_code_signing(type: 'appstore', readonly: readonly) end - - lane :set_up_code_signing_deveploment do |readonly: true| - set_up_code_signing(type: 'development', readonly: readonly) - end end def bump_build_number diff --git a/ios/App/App/Debug.xcconfig b/ios/App/App/Debug.xcconfig index 100bdf3..87c2c6e 100644 --- a/ios/App/App/Debug.xcconfig +++ b/ios/App/App/Debug.xcconfig @@ -6,5 +6,5 @@ // specified below. CODE_SIGN_IDENTITY = Apple Development: Created via API (886NX39KP6) -PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*] = match Development com.ellavandurpe.blocknotes -PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*] = match Development com.ellavandurpe.blocknotes catalyst +PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*] = Blocknotes iOS Development +PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*] = Blocknotes macOS Catalyst Development