I am using following command to export an ipa-File from a created iOS application archive:
xcodebuild -exportArchive -archivePath app.xarchive -exportOptionList ExportOptions.plist -exportPath build
In my ExportOptions.plist
file I have an entry which specifies which mobileprovision file should be used:
<key>provisioningProfiles</key>
<dict>
<key>my.company.app</key>
<string>filename_for_provisioning_file</string>
</dict>
filename_for_provisioning_file
is located in my home directory which seems to be a valid location where the file is searched by xcodebuild.
Question
Is there a possibility to add a specific path in ExportOptions.plist
which points to filename_for_provisioning_file
?