Skip to content

Commit e1701b3

Browse files
committed
ipatest
1 parent 844f795 commit e1701b3

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

ipatest/Payload.ipa

932 KB
Binary file not shown.

ipatest/index.html

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<!DOCTYPE html>
2+
<html lang="zh-cn">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>installer</title>
7+
</head>
8+
<body>
9+
<h1>install ipa</h1>
10+
<a id="install-link" href="#">install</a>
11+
12+
<script>
13+
const plistUrl = 'https://roothide.github.io/ipatest/manifest.plist';
14+
document.getElementById('install-link').href = `itms-services://?action=download-manifest&url=${encodeURIComponent(plistUrl)}`;
15+
</script>
16+
</body>
17+
</html>

ipatest/manifest.plist

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>items</key>
6+
<array>
7+
<dict>
8+
<key>assets</key>
9+
<array>
10+
<dict>
11+
<key>kind</key>
12+
<string>software-package</string>
13+
<key>url</key>
14+
<string>https://roothide.github.io/ipatest/Payload.ipa</string>
15+
</dict>
16+
</array>
17+
<key>metadata</key>
18+
<dict>
19+
<key>bundle-identifier</key>
20+
<string>com.example.app</string>
21+
<key>bundle-version</key>
22+
<string>1.0.0</string>
23+
<key>kind</key>
24+
<string>software</string>
25+
<key>title</key>
26+
<string>Example App</string>
27+
</dict>
28+
</dict>
29+
</array>
30+
</dict>
31+
</plist>

0 commit comments

Comments
 (0)