6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit bc27b1b4

AuthorJakob Højgård<141220340+jaxthedwarf@users.noreply.github.com>
Date2024-08-27 12:58:55 +0200
Update build-ios.yml for Azure Pipelines

Changed files

azure/templates/build-ios.yml | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)

Diff

diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 78126aca..51972f51 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -83,7 +83,7 @@ steps:
flutter pub get
flutter build ios
cd $(Build.SourcesDirectory)/comwell_key_app/ios
- pod install --update-repo
+ pod install
# Copy SeosMobileKeysSDK to the Xcode project directory
- task: CopyFiles@2
@@ -105,12 +105,6 @@ steps:
echo "Error: SeosMobileKeysSDK.xcframework not found!"
exit 1
fi
- - task: Bash@3
- displayName: "Update Xcode Build Settings"
- inputs:
- targetType: 'inline'
- script: |
- plutil -replace "FRAMEWORK_SEARCH_PATHS" -string "\"$(Build.SourcesDirectory)/comwell_key_app/ios/Frameworks\"" "$(Build.SourcesDirectory)/comwell_key_app/ios/Runner.xcworkspace"
# Ensure the custom XCFramework is added to the Xcode project
- task: Xcode@5
@@ -127,7 +121,6 @@ steps:
-verbose
OTHER_LDFLAGS="$(inherited) -framework SeosMobileKeysSDK"
FRAMEWORK_SEARCH_PATHS="$(Build.SourcesDirectory)/comwell_key_app/ios/Frameworks"
- SWIFT_INCLUDE_PATHS="$(Build.SourcesDirectory)/comwell_key_app/ios/Frameworks/SeosMobileKeysSDK.xcframework"
# Build the iOS application
- task: FlutterCommand@0