forked from repat/droid-break
-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
2429 lines (2248 loc) · 119 KB
/
index.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Droid-Break.info - High quality alternative Android apps
</title>
<!-- Metadata -->
<meta charset="utf-8" />
<meta name="description" content="Droid-Break offers a list of free high-quality alternatives to proprietary Android apps." />
<meta name="keywords" content="android,alternative,apps,free,foss,open source,prism-break,f-droid,fdroid" />
<meta name="robots" content="index, follow" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="shortcut icon" href="favicon.ico" />
<!-- Opengraph -->
<meta property="og:title" content="Droid-Break" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://droid-break.info/img/misc/droidbreak-logo-big.png" />
<meta property="og:url" content="https://droid-break.info/" />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Droid-Break.info - A list of free high quality alternatives to proprietary android apps" />
<meta property="og:description" content="Droid-Break offers a list of free high-quality alternatives to proprietary Android apps." />
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebPage",
"name": "Droid Break - A list of free high quality alternatives to proprietary android apps",
"description": "Droid-Break offers a list of free high-quality alternatives to proprietary Android apps.",
"publisher": {
"@type": "Person",
"name": "repat"
},
"license": "https://creativecommons.org/licenses/by-sa/4.0/"
}
</script>
<!-- CSS -->
<!-- based on GroundFloor and BrassTracks -->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link href="//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet">
<!-- JavaScript -->
<!-- jQuery via CDN-->
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<!-- QR codes -->
<script src="js/qrcode.min.js"></script>
<script src="js/qr.js"></script>
<!-- Localisation via jquery.18n.properties to come -->
<!--<script type="text/javascript" src="jquery.i18n.properties-min.js"></script>-->
<!-- jQuery scroll slowly to #top -->
<script type ="text/javascript">
$( document ).ready( function(){ ;
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
})
</script>
</head>
<body>
<a id="top"></a>
<!-- Fork me on GitHub -->
<a href="https://github.com/droidbreak/droidbreak.github.io" target="_blank">
<img src="//s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" id="forkMe" />
</a>
<!-- Header -->
<header>
<h1>
<img src="img/misc/droidbreak-logo.png" alt="Droid-Break" id="logo" />Droid-Break
</h1>
<nav>
<ul>
<li><a href="#browser">Web Browser</a></li>
<li><a href="#socialnetworks">Social Networking</a></li>
<li><a href="#messenger">Messenger</a></li>
<li><a href="#voip">VoIP</a></li>
<li><a href="#multimedia">Multimedia</a></li>
<li><a href="#email">Email</a></li>
<li><a href="#calendar">Calendar</a></li>
<li><a href="#notes">Notes</a></li>
<li><a href="#newsreader">News Reader</a></li>
<li><a href="#filemanager">File Manager</a></li>
<li><a href="#navigation">Navigation</a></li>
<li><a href="#keyboards">Keyboard</a></li>
<li><a href="#cloud">Cloud</a></li>
<li><a href="#office">Office</a></li>
<li><a href="#security">Security</a></li>
<li><a href="#misc">Misc</a></li>
</ul>
</nav>
<p>
<strong>Droid-Break</strong> is a list of <em>free and open source</em> Android apps inspired by <a href="https://prism-break.org" target="_blank">Prism-Break</a>.
Our purpose is to show you <em>high quality alternatives</em> to the big proprietary solutions.<br />
Please note that open source apps don't guarantee absolute freedom, e.g., an open source Twitter client still sends everything to Twitter's servers.<br />
Anyway, we believe it's the best we can come up with and that in many cases it's the better choice.<br />
If you think an app should be added please write an <a href="support.html">email</a>, a <a href="https://twitter.com/droidbreak" target="_blank">tweet</a>, a <a href="#disqus">Disqus</a> comment, or fork the project on <a href="https://github.com/droidbreak/droidbreak.github.io" target="_blank">GitHub</a> and make a pull request.<br />
</p>
<p>
You will find most of these apps in the <a href="https://f-droid.org/" target="_blank">F-Droid</a> repository.
Also, you might want to consider flashing a custom ROM like <a href="https://lineageos.org/" target="_blank">LineageOS</a> or <a href="https://www.replicant.us/" target="_blank">Replicant</a> on your device.
</p>
</header>
<main>
<!-- Start Browser -->
<h2><a id="browser">Web Browser</a><a href="#top" class="topLink">^</a></h2>
<table>
<!-- Table headers -->
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Browser:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="img/proprietary/chrome.png" alt="Chrome" class="proprietary" /><br />Chrome</li>
<li><img src="img/proprietary/opera.png" alt="Opera" class="proprietary" /><br />Opera</li>
<li><img src="img/proprietary/dolphin.png" alt="Dolphin" class="proprietary" /><br />Dolphin</li>
<li><img src="img/proprietary/maxthon.png" alt="Maxthon" class="proprietary" /><br />Maxthon</li>
<li><img src="img/proprietary/uc.png" alt="UC Browser" class="proprietary" /><br />UC Browser</li>
<li><img src="img/proprietary/boat.png" alt="Boat" class="proprietary" /><br />Boat</li>
</ul>
</td>
<!-- Browser:Free alternative -->
<td>
<!-- Firefox -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/firefox.png" alt="Firefox" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Firefox</h2>
<p>
Firefox is a well known browser available for the desktop as well as Android.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="https://hg.mozilla.org/" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.mozilla.firefox" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/packages/org.mozilla.fennec_fdroid" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="firefox" />
</div>
</div>
<!-- icecat -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/icecat.png" alt="Icecat" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Icecat</h2>
<p>
GNU version of Firefox, which gets rid of the non-free addons, plugins and the trademark license. It also adds privacy and security features.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="http://git.savannah.gnu.org/cgit/gnuzilla.git" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://f-droid.org/repository/browse/?fdid=org.gnu.icecat" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="icecat" />
</div>
</div>
<!-- Lightning Browser -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/lightningbrowser.png" alt="Lightning Browser" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Lightning Browser</h2>
<p>
A speedy, lightweight browser with modern navigation.
</p>
<ul>
<li>Price: Free (Pro version $1.50 on Google Play or free on F-Droid)</li>
<li>Min. Android version: varies</li>
<li><a href="https://github.com/anthonycr/Lightning-Browser" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=acr.browser.barebones" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download"></a>(free)</a>
<a href="https://play.google.com/store/apps/details?id=acr.browser.lightning" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download"></a>(pro)</a>
<a href="https://f-droid.org/repository/browse/?fdfilter=light&fdid=acr.browser.lightning" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="lightningbrowser" />
</div>
</div>
</td>
<!-- Browser:Notes -->
<td class="notes">
Firefox uses Yahoo search by default. It also promotes add-ons which may use proprietary services. Have a look at <a href="https://prism-break.org/#browser-addons" target="_blank">these add-ons</a> instead.
</td>
</tr>
</table>
<!-- End Browser -->
<!-- Start SocialNetworks -->
<h2><a id="socialnetworks">Social Networking</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- SocialNetworks:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="img/proprietary/twitter.png" alt="Twitter" class="proprietary" /><br />Twitter</li>
<li><img src="img/proprietary/facebook.png" alt="Facebook" class="proprietary" /><br />Facebook</li>
<li><img src="img/proprietary/tumblr.png" alt="Tumblr" class="proprietary" /><br />Tumblr</li>
<li><img src="img/proprietary/googleplus.png" alt="Google+" class="proprietary" /><br />Google+</li>
<li><img src="img/proprietary/pinterest.png" alt="Pinterest" class="proprietary" /><br />Pinterest</li>
</ul>
</td>
<!-- SocialNetworks:Free alternative -->
<td>
<!-- Tinfoil -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/tinfoil.png" alt="Tinfoil" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Tinfoil for Facebook</h2>
<p>
Tinfoil for Facebook lets you use the mobile website without having the rest of your web browsing tracked. It requires far fewer permissions than the official app.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: varies</li>
<li><a href="https://github.com/velazcod/Tinfoil-Facebook" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.danvelazco.fbwrapper" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=com.danvelazco.fbwrapper" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="tinfoil" />
</div>
</div>
<!-- Twidere -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/twidere.png" alt="Twidere" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Twidere</h2>
<p>
Twidere is a feature-rich, ad-free Twitter client with material design and a tablet mode.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.6</li>
<li><a href="https://github.com/mariotaku/twidere" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.mariotaku.twidere" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.mariotaku.twidere" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="twidere" />
</div>
</div>
<!-- Tweet Lanes -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/tweetlanes.png" alt="Tweet Lanes" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Tweet Lanes</h2>
<p>
Tweet Lanes is a user friendly Twitter and App.net client with lots of functions.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 4.0</li>
<li><a href="https://github.com/chrislacy/TweetLanes" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.tweetlanes.android" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="tweetlanes" />
</div>
</div>
<!-- Impeller -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/impeller.png" alt="Impeller" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Impeller</h2>
<p>
Impeller is one of the first open source mobile clients for <a href="http://pump.io" target="_blank">pump.io</a> and can be used e.g. with <a href="https://identi.ca" target="_blank">identi.ca</a>.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 4.0</li>
<li><a href="https://github.com/oshepherd/Impeller/" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=eu.e43.impeller" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=eu.e43.impeller" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="impeller" />
</div>
</div>
<!-- AndStatus -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/andstatus.png" alt="AndStatus" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">AndStatus</h2>
<p>
AndStatus is a very lightweight and low traffic Twitter, <a href="https://gnu.io/social/" target="_blank">GNU social</a> (formerly StatusNet), as well as <a href="http://pump.io/" target="_blank">pump.io</a> client that derived from AndTweet.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: varies</li>
<li><a href="https://github.com/andstatus/andstatus" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.andstatus.app" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.andstatus.app" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="andstatus" />
</div>
</div>
</td>
<!-- SocialNetworks:Notes -->
<td class="notes">
<p>Twidere might promote non-free add-ons.</p>
<p>Popular GNU Social instances include <a href="https://quitter.se/" target="_blank">Quitter</a>, <a href="https://loadaverage.org/" target="_blank">LoadAverage</a> or <a href="https://status.vinilox.eu/" target="_blank">Vinilox</a>.</p>
</td>
</tr>
</table>
<!-- End SocialNetworks -->
<!-- Start Messenger-->
<h2><a id="messenger">Messenger</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Messenger:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="img/proprietary/whatsapp.png" alt="WhatsApp" class="proprietary" /><br />WhatsApp</li>
<li><img src="img/proprietary/viber.png" alt="Viber" class="proprietary" /><br />Viber</li>
<li><img src="img/proprietary/facebookmessenger.png" alt="Facebook Messenger" class="proprietary" /><br />Facebook Messenger</li>
<li><img src="img/proprietary/icq.png" alt="ICQ" class="proprietary" /><br />ICQ</li>
<li><img src="img/proprietary/kik.png" alt="Kik" class="proprietary" /><br />Kik</li>
<li><img src="img/proprietary/yahoomessenger.png" alt="Yahoo Messenger" class="proprietary" /><br />Yahoo Messenger</li>
<li><img src="img/proprietary/ebuddy.png" alt="eBuddy" class="proprietary" /><br />eBuddy</li>
<li><img src="img/proprietary/threema.png" alt="Threema" class="proprietary" /><br />Threema</li>
</ul>
</td>
<!-- Messenger:Free alternative -->
<td>
<!-- Conversations -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/conversations.png" alt="Conversations" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Conversations</h2>
<p>
Conversations is an XMPP client focused on ease of use and security. Supports end-to-end encryption using OTR or OpenPGP.
</p>
<ul>
<li>Price: $2.99 (Google Play), Free (F-Droid)</li>
<li>Min. Android version: 4.0</li>
<li><a href="https://github.com/siacs/Conversations" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=eu.siacs.conversations" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=eu.siacs.conversations" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="conversations" />
</div>
</div>
<!-- Xabber -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/xabber.png" alt="Xabber" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Xabber</h2>
<p>
Xabber is a famous <a href="https://en.wikipedia.org/wiki/XMPP">XMPP</a> client with <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging">OTR</a> support.
</p>
<ul>
<li>Price: Free (supporter version: 3 €)</li>
<li>Min. Android version: 1.5</li>
<li><a href="https://github.com/redsolution/xabber-android" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.xabber.android" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>(free)
<a href="https://play.google.com/store/apps/details?id=com.xabber.androidvip" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>(supporter)
<a href="https://f-droid.org/repository/browse/?fdid=com.xabber.androiddev" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="xabber" />
</div>
</div>
<!-- ChatSecure -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/chatsecure.png" alt="chatsecure" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">ChatSecure</h2>
<p>
ChatSecure is an XMPP client with <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging">OTR</a> support developed by the <a href="https://guardianproject.info" target="_blank">Guardian Project</a>.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: varies</li>
<li><a href="https://github.com/guardianproject/gibberbot" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=info.guardianproject.otr.app.im" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=info.guardianproject.otr.app.im" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="chatsecure" />
</div>
</div>
<!-- Kontalk -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/kontalk.png" alt="kontalk" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Kontalk</h2>
<p>
Kontalk is an end-to-end encrypted messenger, based on Open Standards (XMPP and OpenPGP). It automatically encrypts all messages and media without any user intervention.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.3</li>
<li><a href="https://github.com/kontalk/androiclient" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.kontalk" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.kontalk" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="kontalk" />
</div>
</div>
<!-- Surespot -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/surespot.png" alt="surespot" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">surespot</h2>
<p>
surespot is an end-to-end encrypted messenger that's supposed to be as easy as WhatsApp.<br />
They provide their own infrastructure so no external account is needed.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="https://github.com/surespot/android" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.twofours.surespot" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=com.twofours.surespot" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="surespot" />
</div>
</div>
<!-- Signal -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/signal.png" alt="signal" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Signal</h2>
<p>
Signal is an end-to-end encrypted messenger. They run their own server and the cryptography is similar to the proven <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging">OTR</a> and done by <a href="https://whispersystems.org/">specialists</a>. Group chat is supported and you can send media files. VoIP is also supported. There is also an <a href="https://itunes.apple.com/app/signal-private-messenger/id874139669/" target="_blank">iOS version</a>.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.3</li>
<li><a href="https://github.com/WhisperSystems/Signal-Android" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.thoughtcrime.securesms" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="signal" />
</div>
</div>
<!-- Telegram -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/telegram.png" alt="telegram" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Telegram</h2>
<p>
Telegram is an encrypted messenger just like WhatsApp and supports end-to-end encryption when choosing the <a href="https://telegram.org/faq#q-how-are-secret-chats-different">"secret chat"</a> option. It also has all the other things you would want from a messenger like group chats and photo/video sharing.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="https://github.com/DrKLO/Telegram" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.telegram.messenger" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.telegram.messenger" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="telegram" />
</div>
</div>
</td>
<!-- Messenger:Notes -->
<td class="notes">
<p>
Don't have a XMPP account yet? Have a look at the <a href="https://xmpp.net/" target="_blank">IM Observatory</a> and register one at a server of your choice.
</p>
<p>
<a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging" target="_blank">OTR</a> stands for off-the-record, a form of end-to-end encryption. End-to-end encryption ensures that only the person with whom you're communicating can decrypt your message.
</p>
<p>
<a href="https://moxie.org/blog/telegram-crypto-challenge/">Be careful</a> with trusting Telegram's encryption. They are also not end-to-end encrypted by default. All messages are stored on their servers except when using the "secret chat" option.
</td>
</tr>
</table>
<!-- End Messenger -->
<!-- Start VoIP -->
<h2><a id="voip">VoIP</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- VoIP:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="img/proprietary/skype.png" alt="Skype" class="proprietary" /><br />Skype</li>
<li><img src="img/proprietary/viber.png" alt="Viber" class="proprietary" /><br />Viber</li>
<li><img src="img/proprietary/hangouts.png" alt="Google Hangouts" class="proprietary" /><br />Google Hangouts</li>
<li><img src="img/proprietary/line.png" alt="Line" class="proprietary" /><br />LINE</li>
<li><img src="img/proprietary/fring.png" alt="Fring" class="proprietary" /><br />Fring</li>
<li><img src="img/proprietary/talkatone.png" alt="Talkatone" class="proprietary" /><br />Talkatone</li>
<li><img src="img/proprietary/tango.png" alt="Tango" class="proprietary" /><br />Tango</li>
</ul>
</td>
<!-- VoIP:Free alternative -->
<td>
<!-- Signal -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/signal.png" alt="signal" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Signal</h2>
<p>
Uses end-to-end encryption and their own network. Very easy to use. Requires to sign up. There is also an <a href="https://itunes.apple.com/app/signal-private-messenger/id874139669/"> iOS version</a>. It is formerly known as a separate application called RedPhone.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.3</li>
<li><a href="https://github.com/WhisperSystems/Signal-Android" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.thoughtcrime.securesms" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="signal" />
</div>
</div>
<!-- CSipSimple -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/csipsimple.png" alt="CSipSimple" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">CSipSimple</h2>
<p>
Easy to use SIP client that supports end-to-end encryption.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.6</li>
<li><a href="https://code.google.com/archive/p/csipsimple/" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.csipsimple" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse?fdid=com.csipsimple" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="csipsimple" />
</div>
</div>
<!-- Linphone -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/linphonevideo.png" alt="Linphone" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Linphone</h2>
<p>
Easy to use SIP client with video and end-to-end encryption support.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="https://www.linphone.org/technical-corner/linphone/overview" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.linphone" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.linphone" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="linphone" />
</div>
</div>
</td>
<!-- VoIP:Notes -->
<td class="notes">
Signal uses special infrastructure, for all other apps you need a SIP account. Have a look on <a href="https://en.wikipedia.org/wiki/SIP_provider" target="_blank">Wikipedia</a> to find a SIP-provider. <a href="https://ostel.co/" target="_blank">Ostel</a> is a free and easy to use SIP service run by the <a href="https://guardianproject.info/" target="_blank">Guardian Project</a>.
</td>
</tr>
</table>
<!-- End VoIP -->
<!-- Start Multimedia -->
<h2><a id="multimedia">Multimedia</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Multimedia:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="img/proprietary/googleplaymusic.png" alt="Google Play Music" class="proprietary" /><br />Google Play Music</li>
<li><img src="img/proprietary/winamp.png" alt="Winamp" class="proprietary" /><br />Winamp</li>
<li><img src="img/proprietary/poweramp.png" alt="Poweramp" class="proprietary" /><br />Poweramp</li>
<li><img src="img/proprietary/podkicker.png" alt="Podkicker" class="proprietary" /><br />Podkicker</li>
<li><img src="img/proprietary/ipppodcastplayer.png" alt="iPP Podcast Player" class="proprietary" /><br />iPP Podcast Player</li>
<li><img src="img/proprietary/beyondpod.png" alt="BeyondPod" class="proprietary" /><br />BeyondPod</li>
<li><img src="img/proprietary/pocketcasts.png" alt="Pocket Casts" class="proprietary" /><br />Pocket Casts</li>
</ul>
</td>
<!-- Multimedia:Free alternative -->
<td>
<!-- VLC -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/vlc.png" alt="vlc" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">VLC</h2>
<p>
VLC is a well known media player. It's also one of the few players that already play the new <a href="https://en.wikipedia.org/wiki/Opus_(audio_format)">opus</a> audio format.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.1</li>
<li><a href="https://wiki.videolan.org/Developers_Corner">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.videolan.vlc" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.videolan.vlc" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="vlc" />
</div>
</div>
<!-- Vanilla Music -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/vanillamusic.png" alt="vanillamusic" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Vanilla Music</h2>
<p>
Vanilla Music is a simple but yet sufficient player for mp3, ogg, flac and pcm files. It also supports tags and folders. It's the current fork of the abandoned original Vanilla Player.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 4.0.3</li>
<li><a href="https://github.com/vanilla-music/vanilla">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=ch.blinkenlights.android.vanilla" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=ch.blinkenlights.android.vanilla" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="vanillamusic" />
</div>
</div>
<!-- Jams Music Player -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/jams.png" alt="Jams Music Player" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Jams Music Player</h2>
<p>
Jams Music Player is an elegant and powerful music player. It used to be a paid, proprietary app but the developer decided to open-source it. This is the free compiled GitHub version.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.3.3</li>
<li><a href="https://github.com/psaravan/JamsMusicPlayer">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.jams.music.player.de.repat" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="jams" />
</div>
</div>
<!-- Voice -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/voice.png" alt="voice" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Voice</h2>
<p>
Voice manages and plays backs your audiobooks.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 5.0</li>
<li><a href="https://github.com/PaulWoitaschek/Voice">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=de.ph1b.audiobook" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=de.ph1b.audiobook" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="voice" />
</div>
</div>
<!-- NewPipe -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/newpipe.png" alt="NewPipe" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">NewPipe</h2>
<p>
NewPipe is a lightweight YouTube viewer. You can also download videos and watch them when offline.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 4.0.3</li>
<li><a href="https://github.com/theScrabi/NewPipe">Source code</a></li>
</ul>
<hr>
<a href="https://f-droid.org/repository/browse/?fdid=org.schabi.newpipe" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="newpipe" />
</div>
</div>
<!-- AntennaPod -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/antennapod.png" alt="antennapod" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">AntennaPod</h2>
<p>
Podcast player for downloading and streaming audio and video podcasts.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.3.3</li>
<li><a href="https://github.com/danieloeh/AntennaPod">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=de.danoeh.antennapod" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=de.danoeh.antennapod" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="antennapod" />
</div>
</div>
</td>
<!-- Multimedia:Notes -->
<td class="notes">
</td>
</tr>
</table>
<!-- End Multimedia -->
<!-- Start EMail -->
<h2><a id="email">Email</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Email:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="img/proprietary/gmail.png" alt="gmail" class="proprietary" /><br />Gmail</li>
<li><img src="img/proprietary/aquamail.png" alt="aquamail" class="proprietary" /><br />Aqua Mail</li>
<li><img src="img/proprietary/maildroid.png" alt="maildroid" class="proprietary" /><br />MailDroid</li>
</ul>
</td>
<!-- Email:Free alternative -->
<td>
<!-- K9Mail -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/k9mail.png" alt="k9mail" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">K-9 Mail</h2>
<p>
K-9 Mail is a feature-rich client that supports POP3, IMAP, Exchange 2003/2007 (with WebDAV) and PGP-encryption.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: varies</li>
<li><a href="https://github.com/k9mail/k-9/">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.fsck.k9" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=com.fsck.k9" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="k9" />
</div>
</div>
</td>
<!-- Email:Notes -->
<td class="notes">
We are still missing some good alternatives here. Know any? Write an <a href="support.html">email or fork the project on GitHub</a> and add your favourite FOSS email client via pull-request.
</td>
</tr>
</table>
<!-- End Email -->
<!-- Start Calendar -->
<h2><a id="calendar">Calendar</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Calendar:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="img/proprietary/googlecalendar.png" alt="googlecalendar" class="proprietary" /><br />Google Calendar</li>
<li><img src="img/proprietary/splanner.png" alt="splanner" class="proprietary" /><br />S Planner / Calendar</li>
</ul>
</td>
<!-- Calendar:Free alternative -->
<td>
<!-- Etar -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/etar.png" alt="etar" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Etar</h2>
<p>
Etar is material designed calendar based on the ASOP calendar.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 4.4</li>
<li><a href="https://github.com/xsoh/Etar-Calendar/">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=ws.xsoh.etar" target="_blank"><img src="img/misc/playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=ws.xsoh.etar" target="_blank"><img src="img/misc/fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="img/misc/qr.gif" alt="QR code" class="download qr" id="etar" />
</div>
</div>
<!-- Offline Calendar -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="img/foss/offlinecalendar.png" alt="offlinecalendar" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Offline Calendar</h2>
<p>
Lets you add offline calendars to the Calendar app, which are not synchronized and are accessible only on the device itself. Create the calendar in this app and it will then be available in the Calendar app.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="https://github.com/SufficientlySecure/offline-calendar/">Source code</a></li>