-
Notifications
You must be signed in to change notification settings - Fork 16
/
plist.php
43 lines (40 loc) · 846 Bytes
/
plist.php
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
<?php
include_once('info.php');
$template="<?xml version=\"1.0\" encoding=\"UTF-8\"?><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>{$ipaURL}</string>
</dict>
<dict>
<key>kind</key>
<string>display-image</string>
<key>needs-shine</key>
<integer>0</integer>
<key>url</key>
<string>{$imgURL}</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>{$appID}</string>
<key>bundle-version</key>
<string>{$version}</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>{$name}</string>
</dict>
</dict>
</array>
</dict></plist>
";
echo $template;
?>