Staring from iOS 4.0, provisioning profile and app can be distributed and installed via WebServer
You can simply add this in the WebServer and install the app via http
<a href="http://192.168.0.10/My_iPhone_Development_2010.mobileprovision">Install Provisioning Profile</a><br/>
<a href="itms-services://?action=download-manifest&url=http://192.168.0.10/MyApp.plist">Install MyApp</a>
The content of MYApp.plist is
- MyApp.plist Select all
<?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://192.168.0.10/MyApp.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.yourcompany.YouApp</string>
<key>bundle-version</key>
<string>1.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>MyAppName</string>
</dict>
</dict>
</array>
</dict>
</plist>
.
.
No comments:
Post a Comment