-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (38 loc) · 1.1 KB
/
index.html
File metadata and controls
42 lines (38 loc) · 1.1 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>App Build Distribution</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
}
h1 {
color: #4CAF50;
}
.build-link {
font-size: 20px;
margin: 10px;
padding: 10px;
background-color: #008CBA;
color: white;
text-decoration: none;
border-radius: 5px;
}
.build-link:hover {
background-color: #006F8E;
}
</style>
</head>
<body>
<h1>Download Android & iOS Builds</h1>
<p>Click below to download the latest build for Android or iOS.</p>
<h2>Android Build</h2>
<a href="https://github.com/VigneshDevelops/app-distribution/raw/main/builds/app-release-signed.apk" class="build-link" download>Download Android APK</a>
<h2>iOS Build</h2>
<a href="itms-services://?action=download-manifest&url=https://vigneshdevelops.github.io/app-distribution/builds/manifest.plist" class="build-link" download>Download iOS IPA</a>
</body>
</html>