6177214e-ce7c-49e3-99de-ff9721b26f63 — Commit d044d8ef
Changed files
azure/templates/build-ios.yml | 5 +---- comwell_key_app/ios/ExportOptions.plist | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+), 4 deletions(-)
Diff
diff --git a/azure/templates/build-ios.yml b/azure/templates/build-ios.yml
index 951b762a..30c295a5 100644
--- a/azure/templates/build-ios.yml
+++ b/azure/templates/build-ios.yml
@@ -59,10 +59,7 @@ steps:
debugMode: false
profileMode: false
iosCodesign: true
- signingIdentity: "$(APPLE_CERTIFICATE_SIGNING_IDENTITY)"
- provisioningProfileUuid: "$(APPLE_PROV_PROFILE_UUID)"
- projectDirectory: "$(Build.SourcesDirectory)/comwell_key_app"
- exportPath: 'build/ios/ipa'
+ extraArgs: '--export-options-plist=ios/ExportOptions.plist'
- task: PublishBuildArtifacts@1
inputs:
diff --git a/comwell_key_app/ios/ExportOptions.plist b/comwell_key_app/ios/ExportOptions.plist
new file mode 100644
index 00000000..2a5a12d3
--- /dev/null
+++ b/comwell_key_app/ios/ExportOptions.plist
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>method</key>
+ <string>app-store</string>
+ <key>teamID</key>
+ <string>8RNV6AX4ZL</string> <!-- Replace with your actual Team ID if different -->
+ <key>signingStyle</key>
+ <string>manual</string>
+ <key>provisioningProfiles</key>
+ <dict>
+ <key>com.comwell.phoenix.stage</key>
+ <string>CP Stage</string> <!-- Replace with your actual profile name -->
+ </dict>
+ <key>signingCertificate</key>
+ <string>Apple Distribution</string>
+ <key>stripSwiftSymbols</key>
+ <true/>
+ <key>compileBitcode</key>
+ <true/>
+</dict>
+</plist>
\ No newline at end of file