IOS开发帐号与发布问题综合

一、iOS开发:AD-HOC版应用测试方法:http://hi.baidu.com/kangle1208/item/163f39530abb4d3195eb05a7

 

二、plist的方式发布:

1.you have to have two file.
    yourapp.ipa
    yourapp.plist
2.in the plist :

<?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>http://urlofyourapp/appname.ipa</string>
                </dict>
            </array>
            <key>metadata</key>
            <dict>
                <key>bundle-identifier</key>
                <string>com.domain.appname</string>
                <key>bundle-version</key>
                <string>1.0</string>
                <key>kind</key>
                <string>software</string>
                <key>title</key>
                <string>YourAppName</string>
            </dict>
        </dict>
    </array>
</dict>
</plist>

 

3.and create a webpage with a link

<a href="itms-services://?action=download-manifest&url=http://yourappurl/yourapp.plist">click to install</a>

 

4.最后要注意对方的机器里要有相应的provision profile. 或者将对方设备的udid加入到provision profile里。

posted @ 2013-10-11 15:26  洒洒  阅读(353)  评论(0编辑  收藏  举报