6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 841a77c1
Changed files
azure/templates/build-ios.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-)
Diff
diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index d15bcf46..0c95df62 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -87,16 +87,17 @@ steps:
displayName: "Integrate XCFramework into Xcode project"
inputs:
actions: "build"
- scheme: "$(flavor)" # Make sure to use the correct scheme that includes the custom XCFramework
+ scheme: "$(flavor)" # Use the correct scheme that includes the custom XCFramework
sdk: "iphoneos"
configuration: "Release"
xcWorkspacePath: "$(Build.SourcesDirectory)/comwell_key_app/ios/Runner.xcworkspace"
xcodeVersion: "default"
packageApp: false
args: |
- -target Runner
- -project $(Build.SourcesDirectory)/comwell_key_app/ios/Runner.xcodeproj
- -destination generic/platform=iOS
+ -workspace $(Build.SourcesDirectory)/comwell_key_app/ios/Runner.xcworkspace
+ -scheme $(flavor)
+ -configuration Release
+ -sdk iphoneos
# Build the iOS application
- task: FlutterCommand@0