-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdeeplinks.html
37 lines (37 loc) · 1.46 KB
/
deeplinks.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- No complains about missing favicon.ico from https requests. -->
<link rel="icon" href="data:,">
<title>My WebView - Deep Links</title>
<!--
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
-->
<style>
@media screen and (min-width: 600px) {
#main {
max-width: 600px;
margin: auto;
}
}
</style>
</head>
<body>
<div id="main">
<h1><a href="index.html">My WebView</a></h1>
<h2>Deep Links</h2>
The following deep links allow you to go directly to a particular section in My WebView, from your browser on Android:
<ul id="linklist">
<li><a href="mywebview://sites/demo/">Local Demo Site</a>: mywebview://sites/demo/</li>
<li><a href="mywebview://sites/">Current Site List</a>: mywebview://sites/</li>
<li><a href="mywebview://local/sites.html">Local Websites</a>: mywebview://local/sites.html</li>
<li><a href="mywebview://">My WebView</a>: mywebview://</li>
<li><a href="https://owncloud.mikespub.net/mywebview/">My WebView (via web link)</a>: https://owncloud.mikespub.net/mywebview/</li>
<li><a href="https://github.mikespub.net/android-webview/">Android WebView (via web link)</a>: https://github.mikespub.net/android-webview/</li>
</ul>
</div>
</body>
</html>