forked from ALEXO-30/electrum-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
android.html
122 lines (95 loc) · 4.49 KB
/
android.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang=en>
<head>
<title>Electrum Bitcoin Client</title>
<meta charset=utf-8 />
<meta name=description content="Lightweight Bitcoin Client" />
<meta name=keywords content="electrum,bitcoin,blockchain,lightweight,instant" />
<!--<meta name=viewport content="width=device-width, initial-scale=1.0" />-->
<!--[if lt IE 9]>
<script type="text/javascript" src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="css/screen.css" />
<!-- /Styles -->
<!-- Links -->
<link rel="shortcut icon" href="favicon.ico" />
<link rel=apple-touch-icon-precomposed href=.png />
<link rel=author type=text/plain href=humans.txt>
<!-- /Links -->
<!-- Analytics -->
<!-- /Analytics -->
<!-- js -->
<script src=https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js></script>
<script>
$(document).ready(function(){
$('#translations').load('langs_nav.html #langs_main');
$('#nav').load('langs_nav.html #nav_en');
});
</script>
<!-- /js -->
</head>
<body>
<header>
<div class="container">
<nav id=translations>
<!-- langs -->
</nav>
<nav id=nav>
<!-- nav -->
<!-- DON'T MODIFY for translations, use 'langs_nav.html' as explained in the README file -->
<ul id=nav_en class=nav>
<li><a href="index.html">Home</a></li>
<li><a href="download.html">Download</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="community.html">Community</a></li>
</ul>
<!-- /DON'T MODIFY end -->
</nav>
<div class=header>
<i id=electrum_logo><img src="media/electrum_logo.png" alt="Electrum" border="none" width="70" align="top" /></i>
<div id=logo><span><h1>Electrum</h1></span></div>
<h2>Lightweight Bitcoin Client</h2>
</div>
</div>
</header>
<section class="container">
<h2>Electrum for Android</h2>
<p>This page explains how to install Electrum on Android devices.<br /></p>
<p>Please note that Electrum is not distributed as a binary package, but as python source code. This means that installation is slightly more complicated than downloading an app from the Google Play Store.<br /></p>
<p>It is possible to install everything from QR codes. If you encounter problems, you may find help at <a href="http://maketecheasier.com/install-applications-without-the-market/2011/01/28">this link</a>.</p>
<h3>1. Download and install Google Scripting Layer for Android</h3>
<p>You can get it <a href="http://code.google.com/p/android-scripting/wiki/Unofficial">here</a>, or by scanning the following qr code:
<br /><br />
<img src="http://chart.apis.google.com/chart?cht=qr&chs=150x150&chld=L&choe=UTF-8&chl=http%3A%2F%2Fwww.mithril.com.au%2Fandroid%2Fsl4a_r5x.apk"
/></p>
<h3>2. Download and install Python for Android</h3>
<p>You can get
it <a href="http://code.google.com/p/python-for-android/downloads/detail?name=PythonForAndroid_r5.apk">here</a>,
or by scanning the following qr code:
<br /><br />
<img src="http://chart.apis.google.com/chart?cht=qr&chs=200x200&chld=L&choe=UTF-8&chl=http%3A%2F%2Fpython-for-android.googlecode.com%2Ffiles%2FPythonForAndroid_r5.apk"/>
<br /><br />
Once you have installed the apk, launch the Python for Android application and click 'install'</p>
<h3>3. Download the Electrum install script</h3>
<pre>
1. Launch SL4A.
2. Press the Menu button.
3. Tap Add.
4. Tap Scan Barcode.
5. Scan the following QRcode:</pre>
<img src="http://chart.apis.google.com/chart?cht=qr&chs=300x300&chld=L&choe=UTF-8&chl=e4a_install.py%0Aimport+urllib%2C+zipfile%2C+os%0Ap%3D%22http%3A%2F%2Fdownload.electrum.org%2Fdownload%2Fe4a-181zip%22%0An%3D%22e4a-1.8.1%22%0Anz%3Dn%2B%22.zip%22%0Aurllib.urlretrieve(p%2Cnz)%0Azipfile.ZipFile(nz).extractall()%0Aos.rename(n%2C'scripts%2F'%2Bn)" />
<br /><br />
<p>This will install a script named e4a_install.py</p>
<h3>4. Download and install Electrum</h3>
<pre>
1. Tap e4a_install.py: it will download and install a directory named "e4a-1.8.1"
2. To launch Electrum, visit the "e4a-1.8.1" directory and tap 'e4a.py'</pre>
<h3>5. Create a shortcut to your home screen</h3>
<pre>
1. Go to your home screen, click the menu button and select "Add to Home".
2. In the menu that shows up, choose "Shortcut", then "Scripts"
3. Navigate to the e4a.py script.</pre>
</section><!-- /container -->
</body>
</html>