6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 11a54cf0
Changed files
azure/templates/build-ios.yml | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-)
Diff
diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 701243b4..f3039268 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -64,19 +64,14 @@ steps:
flutter pub get
cd $(Build.SourcesDirectory)/comwell_key_app/ios
pod install
- - task: Xcode@5
- displayName: "Code Sign ipa for Distribution"
+ # Copy SeosMobileKeysSDK to the Xcode project directory
+ - task: CopyFiles@2
+ displayName: "Copy SeosMobileKeysSDK framework to Xcode project"
inputs:
- actions: "build"
- scheme: "Runner"
- sdk: "$(sdk)"
- configuration: "$(configuration)"
- xcWorkspacePath: "ios/Runner.xcworkspace"
- xcodeVersion: "default"
- packageApp: true
- signingOption: "manual"
- signingIdentity: "$(APPLE_CERTIFICATE_SIGNING_IDENTITY)"
- provisioningProfileUuid: "$(APPLE_PROV_PROFILE_UUID)"
+ sourceFolder: '$(Build.SourcesDirectory)/mobilekeys_sdk_plugin'
+ contents: 'SeosMobileKeysSDK.framework/**'
+ targetFolder: '$(Build.SourcesDirectory)/comwell_key_app/ios/Frameworks'
+ flattenFolders: true
# Build the iOS application
- task: FlutterBuild@0
displayName: "Build application"