blob: 29b872fb57a48e8cfce7edecb7845bcb3256ff39 (
plain)
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
|
- @title = "Bitmask for Android"
:javascript
$(document).ready(function() {
if (navigator.userAgent.toLowerCase().indexOf("android") > -1) {
$('.non-android').hide();
}
});
.row
.col-sm-8.col-sm-offset-2
.p.alert.alert-info
%i.fa.fa-envelope
<b>NOTE:</b> Bitmask for Android does not yet support encrypted email.
%h2 Install from Google Play
You can search for "Bitmask" in the Google Play store or use this link:
.p.android
= render({:partial => 'common/download_button'}, {:link => 'https://play.google.com/store/apps/details?id=se.leap.bitmaskclient', :text => 'Install for Android'})
.p.non-android
%a(href='https://play.google.com/store/apps/details?id=se.leap.bitmaskclient' alt='download')
%img(src='/assets/qr/market-se.leap.bitmaskclient.png')
%h2 Download app
%p Alternately, you can download the Bitmask app directly from this website. You will need to enabled the option <b>Settings > Security > Unknown Sources</b> on your device for this method to work.
.p.android
= render({:partial => 'common/download_button'}, {:link => '/client/android/Bitmask-Android-latest.apk', :text => 'Download for Android'})
.p.non-android
%a(href='/client/android/Bitmask-Android-latest.apk' alt='download')
%img(src='/assets/qr/dl.bitmask.net-bitmask-android-latest.png')
%h2 Download other versions
%p
If you want to install an old version of Bitmask, you can <a href="/client/android/">browse all releases</a>.
|