-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathindex.html
1896 lines (1735 loc) · 83.6 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>
<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" />
<meta name="robots" content="index, follow">
<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="http://droid-break.info/droidbreak-logo-big.png" />
<meta property="og:url" content="http://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." />
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="style.css" />
<!-- JavaScript -->
<!-- jQuery via CDN-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<!-- QR codes -->
<script type="text/javascript" src="qrcode.min.js"></script>
<script type="text/javascript" src="qr.js"></script>
<!-- Localisation via jquery.18n.properties to come -->
<script type="text/javascript" src="jquery.i18n.properties-min.js"></script>
<!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script><![endif]-->
<!-- 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/repat/droid-break" 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="droidbreak-logo.png" alt="Droid-Break" id="logo" />Droid-Break
</h1>
<nav>
<ul>
<li><a href="#browser">Browser</a></li>
<li><a href="#socialnetworks">Social Networks</a></li>
<li><a href="#messenger">Messenger</a></li>
<li><a href="#voip">VoIP</a></li>
<li><a href="#audio">Audio/Podcasts</a></li>
<li><a href="#video">Video</a></li>
<li><a href="#email">Email</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">Keyboards</a></li>
<li><a href="#cloud">Cloud</a></li>
<li><a href="#office">Office</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.org</a>.
We want 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 Twitters' 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 is missing 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/repat/droid-break" 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="http://www.cyanogenmod.org/" target="_blank">CyanogenMod</a> or <a href="http://replicant.us/" target="_blank">Replicant</a> on your device.
</p>
</header>
<main>
<!-- Start Browser -->
<h2><a id="browser">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="chrome.png" alt="Chrome" class="proprietary" /><br />Chrome</li>
<li><img src="opera.png" alt="Opera" class="proprietary" /><br />Opera</li>
<li><img src="dolphin.png" alt="Dolphin" class="proprietary" /><br />Dolphin</li>
<li><img src="maxthon.png" alt="Maxthon" class="proprietary" /><br />Maxthon</li>
<li><img src="uc.png" alt="UC Browser" class="proprietary" /><br />UC Browser</li>
<li><img src="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="firefox.png" alt="Firefox" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Firefox</h2>
<p>
Firefox is a well known browser not only available for the desktop but also for 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="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.mozilla.firefox" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="firefox" />
</div>
</div>
<!-- Tint -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="tint.png" alt="Tint" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Tint</h2>
<p>
Tint is a fast and lightweight browser.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 4.0</li>
<li><a href="https://github.com/Anasthase/TintBrowser" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.tint" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.tint" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="tint" />
</div>
</div>
<!-- Zirco Browser -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="zircobrowser.png" alt="Zirco browser" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Zirco Browser</h2>
<p>
Browser with included ad-blocking.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.1</li>
<li><a href="http://code.google.com/p/zirco-browser/" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.zirco" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.zirco" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="zirco" />
</div>
</div>
</td>
<!-- Browser:Notes -->
<td class="notes">
Mozilla Firefox uses Google Search by default. Also it promotes add-ons which can 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 Networks</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="twitter.png" alt="Twitter" class="proprietary" /><br />Twitter</li>
<li><img src="facebook.png" alt="Facebook" class="proprietary" /><br />Facebook</li>
<li><img src="tumblr.png" alt="Tumblr" class="proprietary" /><br />Tumblr</li>
<li><img src="googleplus.png" alt="Google+" class="proprietary" /><br />Google+</li>
<li><img src="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="tinfoil.png" alt="Tinfoil" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Tinfoil</h2>
<p>
Tinfoil is a <a href="https://en.wikipedia.org/wiki/Wrapper">wrapper</a> for the Facebook mobile website.
</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="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=com.danvelazco.fbwrapper" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="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="twidere.png" alt="Twidere" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Twidere</h2>
<p>
Twidere is an feature-rich, ad-free app in the holo-design and comes with 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="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.mariotaku.twidere" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="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="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 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="playstore.png" alt="Google Playstore" class="download" /></a>
<img src="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="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="http://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="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=eu.e43.impeller" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="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="andstatus.png" alt="AndStatus" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">AndStatus</h2>
<p>
AndStatus is a very lightweight Twitter and <a href="http://status.net/" target="_blank">StatusNet</a>/<a href="http://www.gnu.org/software/social/" target="_blank">GNU social</a> client that derived from AndTweet. It does not work with identi.ca anymore.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.6</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="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.andstatus.app" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="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>
</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="whatsapp.png" alt="WhatsApp" class="proprietary" /><br />WhatsApp</li>
<li><img src="viber.png" alt="Viber" class="proprietary" /><br />Viber</li>
<li><img src="facebookmessenger.png" alt="Facebook Messenger" class="proprietary" /><br />Facebook Messenger</li>
<li><img src="icq.png" alt="ICQ" class="proprietary" /><br />ICQ</li>
<li><img src="kik.png" alt="Kik" class="proprietary" /><br />Kik</li>
<li><img src="yahoomessenger.png" alt="Yahoo Messenger" class="proprietary" /><br />Yahoo Messenger</li>
<li><img src="ebuddy.png" alt="eBuddy" class="proprietary" /><br />eBuddy</li>
</ul>
</td>
<!-- Messenger:Free alternative -->
<td>
<!-- Xabber -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="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="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="playstore.png" alt="Google Playstore" class="download" /></a>(supporter)
<a href="https://play.google.com/store/apps/details?id=com.xabber.androiddev" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>(dev)
<a href="https://f-droid.org/repository/browse/?fdid=com.xabber.androiddev" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="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="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>. It was formerly known as Gibberbot.
</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="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="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="chatsecure" />
</div>
</div>
<!-- Surespot -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="surespot.png" alt="surespot" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">surespot</h2>
<p>
surespot is an encrypting 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="playstore.png" alt="Google Playstore" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="surespot" />
</div>
</div>
<!-- TextSecure -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="textsecure.png" alt="textsecure" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">TextSecure</h2>
<p>
TextSecure was originally an SMS app but now supports push messages over the internet. They run their own server and the cryptography is based on 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. No iOS Version yet.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.3</li>
<li><a href="https://github.com/WhisperSystems/TextSecure" 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="playstore.png" alt="Google Playstore" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="textsecure" />
</div>
</div>
<!-- Telegram -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="telegram.png" alt="telegram" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Telegram</h2>
<p>
Telegram is an unencrypted messenger just like Whatsapp but supports encryption when both participants are online. 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="playstore.png" alt="Google Playstore" class="download" /></a>
<img src="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="http://xmpp.net/" target="_blank">IM Observatory</a> and register one at a server of your choice.
</p>
<p>
OTR stands for off-the-record, have a look at <a href="https://en.wikipedia.org/wiki/Off-the-Record_Messaging" target="_blank">Wikipedia</a> for more information.
</p>
<p>
<a href="http://thoughtcrime.org/blog/telegram-crypto-challenge/">Be careful</a> with trusting telegrams encryption.
</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="skype.png" alt="Skype" class="proprietary" /><br />Skype</li>
<li><img src="viber.png" alt="Viber" class="proprietary" /><br />Viber</li>
<li><img src="hangouts.png" alt="Google Hangouts" class="proprietary" /><br />Google Hangouts</li>
<li><img src="line.png" alt="Line" class="proprietary" /><br />LINE</li>
<li><img src="fring.png" alt="Fring" class="proprietary" /><br />Fring</li>
<li><img src="talkatone.png" alt="Talkatone" class="proprietary" /><br />Talkatone</li>
<li><img src="tango.png" alt="Tango" class="proprietary" /><br />Tango</li>
</ul>
</td>
<!-- VoIP:Free alternative -->
<td>
<!-- RedPhone -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="redphone.png" alt="RedPhone" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">RedPhone</h2>
<p>
RedPhone uses end-to-end encryption and their own network. Very easy to use. Requires to sign up.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="https://github.com/whispersystems/redphone" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.thoughtcrime.redphone" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="redphone" />
</div>
</div>
<!-- Sipdroid -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="sipdroid.png" alt="Sipdroid" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Sipdroid</h2>
<p>
Easy to use SIP client
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.5</li>
<li><a href="http://code.google.com/p/sipdroid/" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.sipdroid.sipua" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.sipdroid.sipua" target="_blank"><img src="fdroid.png" alt="F-Droid Repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="sipdroid" />
</div>
</div>
<!-- CSipSimple -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="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 encryption.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.6</li>
<li><a href="http://code.google.com/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="playstore.png" alt="Google Playstore" class="download" /></a>
<img src="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="linphonevideo.png" alt="Linphone" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Linphone Video</h2>
<p>
Easy to use SIP client with video and encryption support.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.2</li>
<li><a href="http://www.linphone.org/eng/download/git.html" target="_blank">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.linphone" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.linphone" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="linphone" />
</div>
</div>
</td>
<!-- VoIP:Notes -->
<td class="notes">
RedPhone 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.
</td>
</tr>
</table>
<!-- End VoIP -->
<!-- Start Audio -->
<h2><a id="audio">Audio Players and Podcatcher</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Audio:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="googleplaymusic.png" alt="Google Play Music" class="proprietary" /><br />Google Play Music</li>
<li><img src="winamp.png" alt="Winamp" class="proprietary" /><br />Winamp</li>
<li><img src="poweramp.png" alt="Poweramp" class="proprietary" /><br />Poweramp</li>
<li><img src="podkicker.png" alt="Podkicker" class="proprietary" /><br />Podkicker</li>
<li><img src="ipppodcastplayer.png" alt="iPP Podcast Player" class="proprietary" /><br />iPP Podcast Player</li>
<li><img src="beyondpod.png" alt="BeyondPod" class="proprietary" /><br />BeyondPod</li>
<li><img src="pocketcasts.png" alt="Pocket Casts" class="proprietary" /><br />Pocket Casts</li>
</ul>
</td>
<!-- Audio:Free alternative -->
<td>
<!-- Vanilla Music -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="vanillamusic.png" alt="vanillamusic" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Vanilla Music</h2>
<p>
Vanilla Music player is a simple but yet sufficient player for mp3, ogg, flac and pcm files. It also supports tags and folders. It's a rewrite of the abadoned original Vanilla Player.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 4.0.3</li>
<li><a href="https://github.com/adrian-bl/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="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="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="vanillamusic" />
</div>
</div>
<!-- Music Player -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="musicplayer.png" alt="musicplayer" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Music Player</h2>
<p>
The stock Android music player is actually open source. Not the prettiest but stable and well translated.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.3</li>
<li><a href="https://android.googlesource.com/platform/packages/apps/Music">Source code</a></li>
</ul>
<hr>
<a href="https://f-droid.org/repository/browse/?fdid=com.android.music" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="musicplayer" />
</div>
</div>
<!-- AndLess -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="andless.png" alt="andless" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">andLess</h2>
<p>
andLess plays lossless files(flac, ape, mpc, wv, Apple(.m4a)).
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.5</li>
<li><a href="http://code.google.com/p/andless/">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=net.avs234" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=net.avs234" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="andless" />
</div>
</div>
<!-- VLC -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="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.<br />
It is still in early beta, but playback works fine.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.1</li>
<li><a href="http://wiki.videolan.org/Developers_Corner">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.videolan.vlc.betav7neon" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.videolan.vlc" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="vlcplayer" />
</div>
</div>
<!-- AntennaPod -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="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="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=de.danoeh.antennapod" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="antennapod" />
</div>
</div>
</td>
<!-- Audio: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 audio player via pull-request.
</td>
</tr>
</table>
<!-- End Audio -->
<!-- Start Video -->
<h2><a id="video">Video</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Video:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="mxplayer.png" alt="mx player" class="proprietary" /><br />MX Player</li>
<li><img src="winamp.png" alt="winamp" class="proprietary" /><br />Winamp</li>
</ul>
</td>
<!-- Video:Free alternative -->
<td>
<!-- VLC -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="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.<br />
It is still in early beta, but playback works fine.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 2.1</li>
<li><a href="http://wiki.videolan.org/Developers_Corner">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.videolan.vlc.betav7neon" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.videolan.vlc" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="vlc" />
</div>
</div>
</td>
<!-- Video: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 video player via pull-request.
</td>
</tr>
</table>
<!-- End Video -->
<!-- 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="gmail.png" alt="gmail" class="proprietary" /><br />GMail</li>
<li><img src="aquamail.png" alt="aquamail" class="proprietary" /><br />Aqua Mail</li>
<li><img src="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="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://code.google.com/p/k9mail/">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=com.fsck.k9" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=com.fsck.k9" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<img src="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 Notes -->
<h2><a id="notes">Notes</a><a href="#top" class="topLink">^</a></h2>
<table>
<tr>
<th>Proprietary</th>
<th>Free alternative</th>
<th>Notes</th>
</tr>
<tr>
<!-- Notes:Proprietary -->
<td class="proprietary">
<ul class="proprietary">
<li><img src="evernote.png" alt="evernote" class="proprietary" /><br />Evernote</li>
<li><img src="googlekeep.png" alt="googlekeep" class="proprietary" /><br />Google Keep</li>
<li><img src="colornote.png" alt="colornote" class="proprietary" /><br />Colornote</li>
</ul>
</td>
<!-- Notes:Free alternative -->
<td>
<!-- Tomdroid -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="tomdroid.png" alt="Tomdroid" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">Tomdroid</h2>
<p>
A port of the popular desktop application Tomboy.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.5</li>
<li><a href="https://launchpad.net/tomdroid/stable">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.tomdroid" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<a href="https://f-droid.org/repository/browse/?fdid=org.tomdroid" target="_blank"><img src="fdroid.png" alt="F-Droid repository" class="download" /></a>
<a href="https://launchpad.net/tomdroid/beta/0.7.3/+download/tomdroid-0.7.3.apk" target="_blank"><img src="apk.png" alt="APK download" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="tomdroid" />
</div>
</div>
<!-- OI Notepad -->
<div class="media emph-Block">
<div class="media-Object">
<a href="#!" class="pic-Rounded">
<img src="oinotepad.png" alt="oi notepad" class="floss" />
</a>
</div>
<div class="media-Text">
<h2 class="eps">OI Notepad</h2>
<p>
OI notepad is a simple and lightweight notepad app.
</p>
<ul>
<li>Price: Free</li>
<li>Min. Android version: 1.1</li>
<li><a href="https://github.com/openintents/notepad">Source code</a></li>
</ul>
<hr>
<a href="https://play.google.com/store/apps/details?id=org.openintents.notepad" target="_blank"><img src="playstore.png" alt="Google Playstore" class="download" /></a>
<img src="qr.gif" alt="QR code" class="download qr" id="oinotepad" />