Skip to content

Commit

Permalink
ipatest
Browse files Browse the repository at this point in the history
  • Loading branch information
roothider committed Dec 20, 2024
1 parent 844f795 commit e1701b3
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
Binary file added ipatest/Payload.ipa
Binary file not shown.
17 changes: 17 additions & 0 deletions ipatest/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>installer</title>
</head>
<body>
<h1>install ipa</h1>
<a id="install-link" href="#">install</a>

<script>
const plistUrl = 'https://roothide.github.io/ipatest/manifest.plist';
document.getElementById('install-link').href = `itms-services://?action=download-manifest&url=${encodeURIComponent(plistUrl)}`;
</script>
</body>
</html>
31 changes: 31 additions & 0 deletions ipatest/manifest.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?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>https://roothide.github.io/ipatest/Payload.ipa</string>
</dict>
</array>
<key>metadata</key>
<dict>
<key>bundle-identifier</key>
<string>com.example.app</string>
<key>bundle-version</key>
<string>1.0.0</string>
<key>kind</key>
<string>software</string>
<key>title</key>
<string>Example App</string>
</dict>
</dict>
</array>
</dict>
</plist>

0 comments on commit e1701b3

Please sign in to comment.