[SOLVED] Proper plist for OTA distribution

I wish Corona could drop the files in a state ready for OTA distro. In the meantime, could someone show me the proper plist for OTA?

I use http://www.appsendr.com/ and they do it for you. Just put your app and the provisioning profile in a folder called "Payload" and compress it, rename it to Payload.ipa then upload to web interface and it sends out to your testers. It's fantastic.

Ya, I've seen those. Thanks.

Here is a working format. Others would probably work. Hope this helps others. Obviously, replace MYSITE and MYAPP respectively.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!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://www.MYSITE.com/MYAPP.ipa</string>
                                </dict>
                                <dict>
                                        <key>kind</key>
                                        <string>display-image</string>
                                        <key>needs-shine</key>
                                        <true/>
                                        <key>url</key>
                                        <string>http://www.MYSITE.com/Icon.png</string>
                                </dict>                
                                <dict>
                                        <key>kind</key>
                                        <string>full-size-image</string>
                                        <key>needs-shine</key>
                                        <true/>
                                        <key>url</key>
                                        <string>http://www.MYSITE.com/Icon-512.png</string>
                                </dict>
                        </array>
                        <key>metadata</key>
                        <dict>
                                <key>bundle-identifier</key> 
                                <string>com.MYSITE.MYAPP</string>
                                <key>bundle-version</key>
                                <string>1.0</string>
                                <key>kind</key>
                                <string>software</string>
                                <key>title</key>
                                <string>MYAPP</string> 
                        </dict>
                </dict> 
        </array> 
</dict> 
views:1977 update:2012/2/8 8:46:10
corona forums © 2003-2011