Last active
August 29, 2015 13:56
-
-
Save binho/8940801 to your computer and use it in GitHub Desktop.
install app page
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> | |
<html> | |
<!-- | |
Instructions: | |
1. Get UDID of the client device via iTunes. | |
2. Send the device UDID to developer portal. | |
3. Generate a new build with the UDID of the client. | |
4. Archive to enterprise distribribution and save in your machine. | |
5. Change MyApp.plist in this file to your generate plist file, the | |
"YourApp.app" and "YourApp.plist" must be in the same directory of this HTML. | |
6. Publish this page and send to the client to open via Safari. | |
--> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title>Install App</title> | |
</head> | |
<style type="text/css"> | |
body { margin:0; padding:0; font:18px Arial, "Helvetica Neue", Helvetica, sans-serif; } | |
p.info { color:#555; } | |
p.aviso { color:red; font-weight:bold; } | |
#conteudo { text-align:center; padding:40px; } | |
#botao { margin-top:60px; } | |
#botao a { | |
background:#00CCFF; | |
color:#FFF; | |
padding:15px 20px; | |
text-decoration:none; | |
-webkit-border-radius:10px; | |
border-radius:10px; | |
-webkit-box-shadow:0px 2px 1px 1px #555; | |
box-shadow:0px 1px 2px 1px #555; | |
} | |
p.dica { font-size:12px; margin-top:60px; color:#999; font-style:italic; } | |
</style> | |
<body> | |
<div id="conteudo"> | |
<h1>App name goes here</h1> | |
<p class="aviso">Please open this page via Safari browser in your device.</p> | |
<p class="info"> | |
To start the install process please click in "Install on my device" and then choose "Install" in the dialog. | |
</p> | |
<div id="botao"> | |
<a href="itms-services://?action=download-manifest&url=MyApp.plist">Install on my device</a> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment