6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit 0f6fe5b4
Changed files
azure/templates/build-ios.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-)
Diff
diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 0c77063d..65cc5d08 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -69,7 +69,7 @@ steps:
displayName: "Copy SeosMobileKeysSDK framework to Xcode project"
inputs:
sourceFolder: '$(Build.SourcesDirectory)/mobilekeys_sdk_plugin/XCFrameworks/'
- contents: 'SeosMobileKeysSDK.xcframework'
+ contents: 'SeosMobileKeysSDK.xcframework/**'
targetFolder: '$(Build.SourcesDirectory)/comwell_key_app/ios/Frameworks'
flattenFolders: true
# Build the iOS application
@@ -80,7 +80,19 @@ steps:
extraArgs: "-t lib/main.dart"
buildFlavour: 'releasetest' # Using the 'flavor' parameter
projectDirectory: '$(Build.SourcesDirectory)/comwell_key_app'
-
+ - task: Xcode@5
+ displayName: "Code Sign ipa for Distribution"
+ inputs:
+ actions: "build"
+ scheme: "Runner"
+ sdk: "iphoneos"
+ configuration: "Release"
+ xcWorkspacePath: "ios/Runner.xcworkspace"
+ xcodeVersion: "default"
+ packageApp: true
+ signingOption: "manual"
+ signingIdentity: "$(APPLE_CERTIFICATE_SIGNING_IDENTITY)"
+ provisioningProfileUuid: "$(APPLE_PROV_PROFILE_UUID)"
# Uncomment to run unit tests
# - task: FlutterTest@0