누락 파일 추가
This commit is contained in:
parent
312fed928b
commit
ba481d14f2
2 changed files with 60 additions and 0 deletions
15
assets/template/index.html
Normal file
15
assets/template/index.html
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title></title>
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
|
||||
<link rel="stylesheet" href=""/>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<a href="itms-services://?action=download-manifest&url=MENIFEST_URL">App Download</a>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
45
assets/template/manifest.plist
Normal file
45
assets/template/manifest.plist
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
<?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>IPA_URL</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>kind</key>
|
||||
<string>display-image</string>
|
||||
<key>url</key>
|
||||
<string>DISPLAY_IMAGE_URL</string>
|
||||
</dict>
|
||||
<dict>
|
||||
<key>kind</key>
|
||||
<string>full-size-image</string>
|
||||
<key>url</key>
|
||||
<string>FULL_SIZE_IMAGE_URL</string>
|
||||
</dict>
|
||||
</array>
|
||||
<key>metadata</key>
|
||||
<dict>
|
||||
<key>bundle-identifier</key>
|
||||
<string>BUNDLE_ID</string>
|
||||
<key>bundle-version</key>
|
||||
<string>VERSION</string>
|
||||
<key>kind</key>
|
||||
<string>software</string>
|
||||
<key>platform-identifier</key>
|
||||
<string>com.apple.platform.iphoneos</string>
|
||||
<key>title</key>
|
||||
<string>APP_NAME</string>
|
||||
</dict>
|
||||
</dict>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
||||
Loading…
Reference in a new issue