How can I create plist and ipa together for wireless distribution in the new Xcode 6

I have done this many times in Xcode 5 and generated ipa (along with plist) for Adhoc Distribution for my application. But in the new Xcode 6 I can not see this option.

In Xcode 5, I saw this screen that allowed me to put my variables. enter image description here

In Xcode 6, I click "Export" and ask that it is an AdHoc Distribution, but it never asks me about it as it did in Xcode 5. It just generates ipa.

Is there something wrong with what I'm doing?

thanks.

+5
source share
1 answer

No way, old Xcode 6 bugs fixed, and new bugs added.
You need to do this manually, create a plist file using this template:

<?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>items</key> <array> <dict> <key>assets</key> <array> <dict> <key>kind</key> <string>software-package</string> <key>url</key> <string>[INSERT URL HERE]</string> </dict> </array> <key>metadata</key> <dict> <key>bundle-identifier</key> <string>[INSERT BUNDLE ID HERE]</string> <key>bundle-version</key> <string>[INSERT VERSION HERE]</string> <key>kind</key> <string>software</string> <key>title</key> <string>[INSERT APP TITLE HERE]</string> </dict> </dict> </array> </dict> </plist> 
+8
source

Source: https://habr.com/ru/post/1207392/


All Articles