6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit da796d37
Changed files
azure/templates/build-ios.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
Diff
diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 1153a9a3..e5aca958 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -69,8 +69,9 @@ steps:
inputs:
targetType: 'inline'
script: |
- flutter pub get
cd $(Build.SourcesDirectory)/comwell_key_app/ios
+ flutter clean
+ flutter pub get
pod install
# Copy SeosMobileKeysSDK to the Xcode project directory
@@ -93,6 +94,9 @@ steps:
xcWorkspacePath: "$(Build.SourcesDirectory)/comwell_key_app/ios/Runner.xcworkspace"
xcodeVersion: "default"
packageApp: false
+ args: |
+ OTHER_SWIFT_FLAGS="$(inherited) -framework SeosMobileKeysSDK"
+ FRAMEWORK_SEARCH_PATHS="$(Build.SourcesDirectory)/comwell_key_app/ios/Frameworks"
# Build the iOS application
- task: FlutterCommand@0