-
Notifications
You must be signed in to change notification settings - Fork 0
/
respositories.json
1105 lines (1105 loc) · 48.9 KB
/
respositories.json
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
[
"https://github.com/WeAreFairphone/FP2-Launcher",
"https://github.com/d4rken/reddit-android-appstore",
"https://github.com/j4velin/SystemAppMover",
"https://github.com/LonamiWebs/Klooni1010",
"https://github.com/uberspot/2048-android",
"https://github.com/tuxmobil/CampFahrplan",
"https://github.com/ligi/CampFahrplan",
"https://github.com/ligi/SCR",
"https://github.com/eqvinox/wifisetup",
"https://github.com/EventFahrplan/EventFahrplan",
"https://github.com/k3b/APhotoManager",
"https://github.com/netmackan/ATimeTracker",
"https://github.com/jroal/a2dpvolume",
"https://github.com/aarddict/android",
"https://github.com/bailuk/AAT",
"https://github.com/greenaddress/abcore",
"https://github.com/billthefarmer/accordion",
"https://github.com/valerio-bozzolan/AcrylicPaint",
"https://github.com/ramack/ActivityDiary",
"https://github.com/butzist/ActivityLauncher",
"https://github.com/abertschi/ad-free",
"https://github.com/AdAway/AdAway",
"https://github.com/ilijamt/android-adbm",
"https://github.com/senzhk/ADBKeyBoard",
"https://github.com/danielegobbetti/ICSImport",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/linux-colonel/AdminControl",
"https://github.com/DanielBarnett714/AddressToGPS",
"https://github.com/AdguardTeam/ContentBlocker",
"https://github.com/dnet/adsdroid",
"https://github.com/AnderWeb/android_packages_apps_Launcher",
"https://github.com/JanSvoboda/aeonsend-randomizer",
"https://github.com/phora/AeonDroid",
"https://github.com/daktak/afh_downloader",
"https://github.com/FreeRDP/FreeRDP",
"https://github.com/ukanth/afwall",
"https://github.com/achromaticmetaphor/agram",
"https://github.com/benjaminaigner/aiproute",
"https://github.com/pinetum/AirUnlock-for-Android",
"https://github.com/kraigs-android/kraigsandroid",
"https://github.com/JiriSko/amixer-webui-android",
"https://github.com/rosenpin/AlwaysOnDisplayAmoled",
"https://github.com/rosenpin/AlwaysOnAmoledPlugin",
"https://github.com/TeamAmaze/AmazeFileManager",
"https://github.com/starryalley/AmbitSync",
"https://github.com/Dejvino/amdroid",
"https://github.com/RomanGolovanov/ametro",
"https://github.com/rootkiwi/an2linuxclient",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/mjdenham/and-bible",
"https://github.com/klassm/andFHEM",
"https://github.com/Zukero/andors-trail",
"https://github.com/andOTP/andOTP",
"https://github.com/fr3ts0n/AndrOBD",
"https://github.com/iamtrk/Device-Explorer",
"https://github.com/Arjun-sna/android-permission-checker-app",
"https://github.com/markmcavoy/androidtoken",
"https://github.com/daktak/androidpn-client",
"https://github.com/antlersoft/android-vnc-viewer",
"https://github.com/phora/AndroPTPB",
"https://github.com/tstein/AndroSS",
"https://github.com/andstatus/andstatus",
"https://github.com/HugoGresse/Anecdote",
"https://github.com/1hakr/AnExplorer",
"https://github.com/null-dev/animeopenings-android",
"https://github.com/ankidroid/Anki-Android",
"https://github.com/tran-khoa/ANNO1404-Warenrechner-App",
"https://github.com/no-go/AnotherRSS",
"https://github.com/AntonioRedondo/AnotherMonitor",
"https://github.com/jdmonin/anstop",
"https://github.com/antennapod/AntennaPod",
"https://github.com/reloZid/android-anuto",
"https://github.com/helloworld1/AnyMemo",
"https://github.com/AnySoftKeyboard/AnySoftKeyboard",
"https://github.com/kertase/neo_anysoftkeyboard",
"https://github.com/axxapy/apkExtractor",
"https://github.com/JusticeRage/ApkTrack",
"https://github.com/fighthawkarg/NasaApodCL",
"https://github.com/fighthawkarg/NasaApodMD",
"https://github.com/jakevossen5/Apollo-Trivia",
"https://github.com/SimpleMobileTools/Simple-App-Launcher",
"https://github.com/microg/AppleWifiNlpBackend",
"https://github.com/MajeurAndroid/Applications-Info",
"https://github.com/mpietrzak/apv",
"https://github.com/jtmcn/archwiki-viewer",
"https://github.com/jdeslip/arxiv-mobile",
"https://github.com/lopespm/arxiv-papers-mobile",
"https://github.com/dozingcat/AsciiCam",
"https://github.com/lsubel/amam-cordova",
"https://github.com/AsteroidOS/AsteroidOSSync",
"https://github.com/lllllT/AtmosphereLogger",
"https://github.com/indrora/Atomic",
"https://github.com/nvllsvm/Audinaut",
"https://github.com/quaap/AudioMeter",
"https://github.com/ReeceStevens/ut_ewh_audiometer_2014",
"https://github.com/rascarlo/AURdroid",
"https://github.com/0xbb/otp-authenticator",
"https://github.com/tejado/Authorizer",
"https://github.com/MBach/AutoAirplaneMode",
"https://github.com/adolfintel/chromiumUpdater",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/DizzyThermal/Auto-Away",
"https://github.com/vvolas/Awesome-Live-Wallpaper",
"https://github.com/brarcher/baby-sleep-sounds",
"https://github.com/mdecorde/BABYNAME",
"https://github.com/MrBIMC/RunInBackgroundPermissionSetter",
"https://github.com/SibDev/BadPixels",
"https://github.com/scheich/Balance",
"https://github.com/liato/android-bankdroid",
"https://github.com/zxing/zxing",
"https://github.com/szym/barnacle",
"https://github.com/dougkeen/BartRunnerAndroid",
"https://github.com/daktak/basketbuild_downloader",
"https://github.com/sarbajitsaha/Batch-Uninstaller",
"https://github.com/kwantam/batsHIIT",
"https://github.com/sriharshaarangi/BatteryChargeLimit",
"https://github.com/enricocid/Battery-Live",
"https://github.com/darshan-/Battery-Indicator-Free",
"https://github.com/darshan-/Battery-Indicator-Pro",
"https://github.com/Perflyst/BatteryCalibration",
"https://github.com/vitas/beaconloc",
"https://github.com/knirirr/BeeCount",
"https://github.com/VladThodo/behe-keyboard",
"https://github.com/VladThodo/behe-explorer",
"https://github.com/Berlin-Vegan/berlin-vegan-guide",
"https://github.com/javiersantos/WhatsAppBetaUpdater",
"https://github.com/arnef/bewegungsmelder-android",
"https://github.com/Renard1911/BaiApp",
"https://github.com/BiglySoftware/BiglyBT-Android",
"https://github.com/apiote/Bimba",
"https://github.com/GiorgioRegni/Binaural-Beats",
"https://github.com/iexos/BipolAlarm",
"https://github.com/PrivacyApps/birthday-calendar",
"https://github.com/saschpe/BirthdayCalendar",
"https://github.com/btcontract/wallet",
"https://github.com/bitcoin-wallet/bitcoin-wallet",
"https://github.com/kenCode-de/bitshares-wallet",
"https://github.com/kaliturin/BlackList",
"https://github.com/ligi/BLExplorer",
"https://github.com/grote/BlitzMail",
"https://github.com/vocollapse/Blockinger",
"https://github.com/blokadaorg/blokada",
"https://github.com/scoutant/blokish",
"https://github.com/scoute-dich/Blue-Minimal",
"https://github.com/pipakin/Android-Bluetooth-Reprap",
"https://github.com/Sash0k/bluetooth-spp-terminal",
"https://github.com/janosgyerik/bluetoothviewer",
"https://github.com/janosgyerik/bluetoothviewer#Donations",
"https://github.com/kenkendk/android-bluez-ime",
"https://github.com/zikalify/BMI_Calculator",
"https://github.com/bobthekingofegypt/BobBall",
"https://github.com/drpout/boilr",
"https://github.com/sophiehuiberts/Bomber-for-android",
"https://github.com/JohnMH/BoogDroid",
"https://github.com/eleybourn/Book-Catalogue",
"https://github.com/andviane/google-books-android-viewer",
"https://github.com/charlieCollins/and-bookworm",
"https://github.com/quaap/BookyMcBookface",
"https://github.com/abrensch/brouter",
"https://github.com/nkanaev/bubble",
"https://github.com/avianey/Level",
"https://github.com/jereksel/Bucket",
"https://github.com/notriddle/budget-envelopes",
"https://github.com/brarcher/budget-watch",
"https://github.com/alexghr/bulkshare",
"https://github.com/meefik/busybox",
"https://github.com/X-Ryl669/BwareArea",
"https://github.com/c-base/c-beam-droid",
"https://github.com/guardianproject/cacert",
"https://github.com/Frozen-Developers/android-cache-cleaner",
"https://github.com/otaconix/caffeinetile",
"https://github.com/SimpleMobileTools/Simple-Calculator",
"https://github.com/Xlythe/android_packages_apps_Calculator",
"https://github.com/SimpleMobileTools/Simple-Calendar",
"https://github.com/pascalfree/calendar-color",
"https://github.com/k3b/CalendarIcsAdapter",
"https://github.com/PrivacyApps/calendar-import-export",
"https://github.com/quarck/CalendarNotification",
"https://github.com/rparkins999/CalendarTrigger",
"https://github.com/plusonelabs/calendar-widget",
"https://github.com/citiususc/calendula",
"https://github.com/renyuneyun/CamCov",
"https://github.com/SimpleMobileTools/Simple-Camera",
"https://github.com/kollerlukas/Camera-Roll-Android-App",
"https://github.com/dozingcat/CamTimer",
"https://github.com/tube42/candymem",
"https://github.com/capitoledulibre/cdl-companion-android",
"https://github.com/bherrmann7/Car-Cast",
"https://github.com/luarca84/Caramelos",
"https://github.com/PhieF/CarnetDocumentation",
"https://github.com/agateau/cat-avatar-generator-app",
"https://github.com/Bubu/android-dice-game",
"https://github.com/bpeel/catverbs",
"https://github.com/netmackan/CertTools",
"https://github.com/grzegorznittner/chanu",
"https://github.com/kostmo/chartdroid",
"https://github.com/mathisdt/checknetwork",
"https://github.com/SecUSo/privacy-friendly-dame",
"https://github.com/gsantner/cherrymusic-android",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/raatmarien/chibe",
"https://github.com/dkanada/Chip8",
"https://github.com/pmarks-net/chromadoze",
"https://github.com/bamless/chromium-swe-updater",
"https://github.com/nathan-osman/chronosnap",
"https://github.com/rmceoin/cidrcalculator",
"https://github.com/CityZenApp/Android-Development",
"https://github.com/emmaguy/clean-status-bar",
"https://github.com/douzifly/clear-todolist",
"https://github.com/clementine-player/Android-Remote",
"https://github.com/heruoxin/Clip-Stack",
"https://github.com/SimpleMobileTools/Simple-CLock",
"https://github.com/philliphsu/ClockPlus",
"https://github.com/Floens/Clover",
"https://github.com/jatwigg/cmus-android-remote",
"https://github.com/enricocid/Color-picker-library",
"https://github.com/VelbazhdSoftwareLLC/ColorsOverflow",
"https://github.com/mschlauch/comfortreader",
"https://github.com/commons-app/apps-android-commons",
"https://github.com/CommonsLab/CommonsLab",
"https://github.com/MiCode/Compass",
"https://github.com/gsimon75/compass-keyboard",
"https://github.com/VelbazhdSoftwareLLC/Complica4",
"https://github.com/quaap/ComputationalDemonology",
"https://github.com/connectbot/connectbot",
"https://github.com/SimpleMobileTools/Simple-Contacts",
"https://github.com/k3b/ContentProviderHelper",
"https://github.com/siacs/Conversations",
"https://github.com/johanhil/copy-to-clipboard",
"https://github.com/sergstetsuk/CosyDVR",
"https://github.com/Dariasteam/Cows-Revenge",
"https://github.com/TheUberCatman/crates-io-android",
"https://github.com/CriticalMaps/criticalmaps-android",
"https://github.com/alaskalinuxuser/app_critical_velocity",
"https://github.com/faerbit/android-crond",
"https://github.com/billthefarmer/crossword",
"https://github.com/nelenkov/cryptfs-password-manager",
"https://github.com/arkon/CDFLabs",
"https://github.com/cSploit/android",
"https://github.com/paride/CopperPDF",
"https://github.com/billthefarmer/currency",
"https://github.com/gstraube/cythara",
"https://github.com/h42i/d00r-app",
"https://github.com/nutritionfactsorg/daily-dozen-android",
"https://github.com/gsantner/dandelion",
"https://github.com/DecentralizedAmateurPagingNetwork/DAPNETApp",
"https://github.com/takke/DataStats",
"https://github.com/rosenpin/DBZ-Battery-Widget",
"https://github.com/czlee/debatekeeper",
"https://github.com/scheich/debDroid",
"https://github.com/lucasdnd/decimal-clock-widget",
"https://github.com/HassanHeydariNasab/defendo",
"https://github.com/deltachat/deltachat-android",
"https://github.com/fenimore/DemocracyDroid",
"https://github.com/Natureshadow/Zahnarztgeraeusche",
"https://github.com/asnelt/derandom",
"https://github.com/fenimore/devinettes-android",
"https://github.com/matejdro/PebbleDialer-Android",
"https://github.com/billthefarmer/diary",
"https://github.com/voidcode/Diaspora-Webclient",
"https://github.com/javierllorente/adc",
"https://github.com/SecUSo/privacy-friendly-dice-game",
"https://github.com/SecUSo/privacy-friendly-dicer",
"https://github.com/giraffine/Android-Project",
"https://github.com/zagaberoo/diode",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/renancunha33/DiolinuxApp",
"https://github.com/veniosg/Dir",
"https://github.com/pR0Ps/DisableBatteryWarnings",
"https://github.com/IvanVolosyuk/diskusage",
"https://github.com/obale/divedroid",
"https://github.com/devgianlu/DNSHero",
"https://github.com/julian-klode/dns66",
"https://github.com/yassirh/digital-ocean-swimmer",
"https://github.com/PrivacyApps/document-viewer",
"https://github.com/quaap/DodaTheExploda",
"https://github.com/dolphin-emu/dolphin",
"https://github.com/domogik/domodroid",
"https://github.com/dbravender/korean_conjugation",
"https://github.com/agwells/dotdash-keyboard-android",
"https://github.com/SimpleMobileTools/Simple-Draw",
"https://github.com/sreichholf/dreamDroid",
"https://github.com/amasciul/Drinks",
"https://github.com/rastating/DroidBeard",
"https://github.com/peterosterlund2/droidfish",
"https://github.com/ltGuillaume/DroidShows",
"https://github.com/yashima/droidweight",
"https://github.com/alkom/droidzebra",
"https://github.com/tube42/drumon",
"https://github.com/ciubex/dscautorename",
"https://github.com/daneren2005/Subsonic",
"https://github.com/mobimentum/dualsimreminder",
"https://github.com/johanhil/ddg-android",
"https://github.com/duckduckgo/Android",
"https://github.com/yeriomin/DumbphoneAssistant",
"https://github.com/fralik/Duorem",
"https://github.com/quaddy-services/DynamicNightLight",
"https://github.com/shymmq/librus-client-kotlin",
"https://github.com/n76/DejaVu",
"https://github.com/renyuneyun/Easer",
"https://github.com/T-Rex96/Easy_xkcd",
"https://github.com/Alkarex/EasyRSS",
"https://github.com/mafik/echo",
"https://github.com/billthefarmer/editor",
"https://github.com/sovworks/edslite",
"https://github.com/MyIgel/EH17Fahrplan",
"https://github.com/ultramega/elementary",
"https://github.com/ellaism/Lunary-Ethereum-Wallet",
"https://github.com/m0ppers/ElpeEfpeAndroid",
"https://github.com/HenriDellal/emerald",
"https://github.com/subchannel13/EnchantedFortress",
"https://github.com/JanmanX/EncryptTextApp",
"https://github.com/hypeapps/Endoscope",
"https://github.com/vanitasvitae/EnigmAndroid",
"https://github.com/Nutomic/ensichat",
"https://github.com/pR0Ps/Entrust-IdentityGuard-Unblocker",
"https://github.com/mannd/epmobile",
"https://github.com/jamienicol/episodes",
"https://github.com/hypeapps/episodie",
"https://github.com/EvanRespaut/Equate",
"https://github.com/clemensbartz/essential-launcher",
"https://github.com/Etar-Group/Etar-Calendar",
"https://github.com/RCasatta/EternityWallAndroid",
"https://github.com/etesync/android",
"https://github.com/e-venement/eve-control",
"https://github.com/danvratil/FBEventSync",
"https://github.com/fossasia/open-event-android",
"https://github.com/fossasia/open-event-orga-app",
"https://github.com/Yonjuni/ExaltedDicer",
"https://github.com/Exodus-Privacy/exodus-android-app",
"https://github.com/gianluca-nitti/android-expr-eval",
"https://github.com/kost/external-ip",
"https://github.com/mbmb5/Eylca",
"https://github.com/indywidualny/FaceSlim",
"https://github.com/M66B/open-source-email",
"https://github.com/WeAreFairphone/FP1-Launcher",
"https://github.com/WeAreFairphone/android_packages_apps_ClockWidget",
"https://github.com/mcastillof/FakeTraveler",
"https://github.com/thermatk/FakeGApps",
"https://github.com/gabm/FancyPlaces",
"https://github.com/ligi/FAST",
"https://github.com/Free-Software-for-Android/FasterGPS",
"https://github.com/thermatk/FastHub-Libre",
"https://github.com/ScreamingHawk/fate-sheets",
"https://github.com/sebastianrakel/fb-client-android",
"https://github.com/geometer/FBReaderJ",
"https://github.com/SimpleMobileTools/Simple-File-Manager",
"https://github.com/zouroboros/filmchecker",
"https://github.com/schollz/find3-android-scanner",
"https://github.com/M66B/FineGeotag",
"https://github.com/mozilla-mobile/focus-android",
"https://github.com/VelbazhdSoftwareLLC/FishRingsForAndroid",
"https://github.com/fenimore/fissure-android",
"https://github.com/abhijitvalluri/fitnotifications",
"https://github.com/SimpleMobileTools/Simple-Flashlight",
"https://github.com/pR0Ps/FlatConnectivityIcons",
"https://github.com/ultramega/flavordex",
"https://github.com/danielmeek32/FlexibleWallpaper",
"https://github.com/happyalu/Flite-TTS-Engine-for-Android",
"https://github.com/renyuneyun/FLock",
"https://github.com/FredJul/Flym",
"https://github.com/gjedeer/androidwisprclient",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/elboza/footguy",
"https://github.com/martykan/forecastie",
"https://github.com/jonan/ForkHub",
"https://github.com/slartus/4pdaClient-plus",
"https://github.com/316k/android-fortune",
"https://github.com/cbeyls/fosdem-companion-android",
"https://github.com/scoute-dich/browser",
"https://github.com/fossasia/open-event-android",
"https://github.com/jfilter/frag-den-staat-app",
"https://github.com/gilbsgilbs/freemobilenetstat",
"https://github.com/shlusiak/Freebloks-Android",
"https://github.com/freeminer/freeminer",
"https://github.com/freeotp/freeotp-android",
"https://github.com/helloworld1/FreeOTPPlus",
"https://github.com/knilch0r/freeshisen",
"https://github.com/WIStudent/FreifunkAutoConnectApp",
"https://github.com/caarmen/FRCAndroidWidget",
"https://github.com/dkanada/frost",
"https://github.com/videogameboy76/frozenbubbleandroid",
"https://github.com/videogameboy76/FBEditPlus",
"https://github.com/ppareit/swiftp",
"https://github.com/no-go/FunPhonePuppet",
"https://github.com/meyerd/funktrainer",
"https://github.com/jp-bennett/fwknop2",
"https://github.com/dzmanto/foehnix",
"https://github.com/Freeyourgadget/Gadgetbridge",
"https://github.com/murraycu/android-galaxyzoo",
"https://github.com/SimpleMobileTools/Simple-Gallery",
"https://github.com/tobykurien/GoogleApps",
"https://github.com/mridang/gasflow",
"https://github.com/urandom/gearshift",
"https://github.com/zeldin/Gerberoid",
"https://github.com/seguri/GetForegroundActivity",
"https://github.com/Alikaraki95/Getoffyourphone",
"https://github.com/ruleant/getback_gps",
"https://github.com/andDevW/getChromium",
"https://github.com/rfc2822/GfxTablet",
"https://github.com/brarcher/gift-card-guard",
"https://github.com/Wilm0r/giggity",
"https://github.com/restorer/gloomy-dungeons-3d",
"https://github.com/restorer/gloomy-dungeons-2",
"https://github.com/linuxtage/glt-companion",
"https://github.com/ge0rg/gamemasterdice",
"https://github.com/ligi/gobandroid",
"https://github.com/qqq3/good-weather",
"https://github.com/tiagoshibata/Android-GPSd-Client",
"https://github.com/barbeau/gpstest",
"https://github.com/evgenyzinoviev/gravitydefied",
"https://github.com/greenaddress/GreenBits",
"https://github.com/gabrielelucci/greyscale-cmte",
"https://github.com/wbrenna/GTFSOffline",
"https://github.com/zxalexis/guess",
"https://github.com/mo271/guessaday",
"https://github.com/vbier/habpanelviewer",
"https://github.com/tasomaniac/hackdash",
"https://github.com/klausw/hackerskeyboard",
"https://github.com/atd/HandyNotes",
"https://github.com/corcoran/Hangar",
"https://github.com/haha01haha01/HaRail_Android",
"https://github.com/kodejak/Hashr",
"https://github.com/seizonsenryaku/HayaiLauncher",
"https://github.com/cryptofuture/urlhda-android",
"https://github.com/vanilla-music/vanilla-headphone-detector",
"https://github.com/cweiske/headphoneindicator",
"https://github.com/borneq/HereGPSLocation",
"https://github.com/SoupeauCaillou/heriswap",
"https://github.com/urtxintxa/HexColorTime",
"https://github.com/scoute-dich/HHSMoodle",
"https://github.com/manmal/hn-android",
"https://github.com/queler/holokenmod",
"https://github.com/Maxr1998/home-assistant-Android",
"https://github.com/HopEdia/android-client",
"https://github.com/jeremymarch/HoplitePolytonicKeyboardAndroid",
"https://github.com/jpriebe/hotdeath",
"https://github.com/alaskalinuxuser/app_hourglass",
"https://github.com/derekcsm/hubble_gallery",
"https://github.com/zenorogue/hyperrogue",
"https://github.com/kostmo/android-spiral-wallpaper",
"https://github.com/1C3/ICEcons",
"https://github.com/iitc-project/ingress-intel-total-conversion",
"https://github.com/nbenm/ImapNote2",
"https://github.com/achromaticmetaphor/IMCKTG",
"https://github.com/itprojects/InboxPager",
"https://github.com/x1125/initd-light",
"https://github.com/k3b/intent-intercept",
"https://github.com/intrications/intent-intercept",
"https://github.com/smblott-github/intent_radio",
"https://github.com/SecUSo/privacy-friendly-interval-timer",
"https://github.com/salvadorp2001/Inventory_Taker",
"https://github.com/qqq3/inventum",
"https://github.com/niqdev/ipcam-view",
"https://github.com/ligi/IPFSDroid",
"https://github.com/irssiconnectbot/irssiconnectbot",
"https://github.com/seguri/IsPhoneEncrypted",
"https://github.com/VelbazhdSoftwareLLC/IthakaBoardGame",
"https://github.com/enricocid/iven-feed-reader",
"https://github.com/richardchien/jigsaw-android",
"https://github.com/nikita36078/J2ME-Loader",
"https://github.com/telecapoland/jamendo-android",
"https://github.com/aragaer/jtt_android",
"https://github.com/jannispinter/jaws",
"https://github.com/marunjar/anewjkuapp",
"https://github.com/JTechMe/JumpGo",
"https://github.com/jarofgreen/Just-A-Damn-Compass",
"https://github.com/veniosg/JustSearch",
"https://github.com/k9mail/k-9",
"https://github.com/HassanHeydariNasab/k2",
"https://github.com/scoute-dich/K9-MailClient",
"https://github.com/prrt714/Kaleidoscope",
"https://github.com/andresth/Kandroid",
"https://github.com/blastrock/kaqui",
"https://github.com/Kunzisoft/KeePassDX",
"https://github.com/bpellin/keepassdroid",
"https://github.com/NHellFire/KernelAdiutor",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/aario/killcamera",
"https://github.com/gsantner/kimai-android",
"https://github.com/Neamar/KISS",
"https://github.com/kiwix/kiwix-xulrunner",
"https://github.com/konradrenner/kolabnotes-android",
"https://github.com/kontalk/androidclient",
"https://github.com/xbmc/Kore",
"https://github.com/blurpy/kouchat-android",
"https://github.com/poseidn/KungFoo",
"https://github.com/ninelima/kwikEFIS",
"https://github.com/aroblu94/langolonerd_android",
"https://github.com/nilesr/United4",
"https://github.com/alexcustos/linkasanote",
"https://github.com/ibinshoid/LASKmobile",
"https://github.com/quaap/LaunchTime",
"https://github.com/LawnchairLauncher/Lawnchair",
"https://github.com/0iras0r/ils-companion-android",
"https://github.com/MBach/LeMondeRssReader",
"https://github.com/lexica/lexica",
"https://github.com/cgogolin/library",
"https://github.com/foocorp/gnu-fm",
"https://github.com/milesmcc/LibreNews-Android",
"https://github.com/tryton-vanmeer/LibreTrivia",
"https://github.com/foxykeep/lifecounter",
"https://github.com/MarcelJurtz/LifeCounter",
"https://github.com/anthonycr/Lightning-Browser",
"https://github.com/felixwiemuth/LinCal",
"https://github.com/DocSalvi/LinuxDayAppAndroid",
"https://github.com/onyxbits/listmyaps",
"https://github.com/LISTEN-moe/android-app",
"https://github.com/kaputnikGo/LittleSirEcho",
"https://github.com/michaelachmann/LnkShortener",
"https://github.com/n76/Local-GSM-Backend",
"https://github.com/n76/wifi_backend",
"https://github.com/k3b/locationMapViewer",
"https://github.com/pR0Ps/LocationShare",
"https://github.com/seguri/lock",
"https://github.com/zoenb/log28",
"https://github.com/darshanparajuli/LogcatReader",
"https://github.com/LukeStonehm/LogicalDefence",
"https://github.com/tananaev/rootless-logcat",
"https://github.com/iSoron/uhabits",
"https://github.com/brarcher/loyalty-card-locker",
"https://github.com/SecUSo/privacy-friendly-ludo",
"https://github.com/opentelecoms-org/lumicall",
"https://github.com/manuelsc/Lunary-Ethereum-Wallet",
"https://github.com/shkcodes/Lyrically",
"https://github.com/ratmole/Mach3Pendant",
"https://github.com/Adonai/Man-Man",
"https://github.com/falnatsheh/MarkdownView",
"https://github.com/gsantner/markor",
"https://github.com/BijoySingh/Scarlet-Notes",
"https://github.com/ligi/MaterialTeaTimer",
"https://github.com/ZeeRooo/MaterialFBook",
"https://github.com/hidroh/materialistic",
"https://github.com/materialos/CM12-Theme",
"https://github.com/materialos/android-icon-pack",
"https://github.com/icasdri/Mather",
"https://github.com/mattermost/mattermost-android-classic",
"https://github.com/chelovek84/mBrowser",
"https://github.com/JohnLines/mediclog",
"https://github.com/billthefarmer/melodeon",
"https://github.com/yaa110/Memento",
"https://github.com/gsantner/memetastic",
"https://github.com/SecUSo/privacy-friendly-memo-game",
"https://github.com/androidsoft-org/androidsoft-memory",
"https://github.com/jakobwenzel/MensaGuthaben",
"https://github.com/Skarafaz/mercury",
"https://github.com/dakhnod/Meshenger",
"https://github.com/gsurrel/MessengerBypasser",
"https://github.com/zoff99/MetalabDoorWidget",
"https://github.com/chaosdorf/meteroid",
"https://github.com/mannyamorim/metrictime",
"https://github.com/micolous/metrodroid",
"https://github.com/waelk10/Metronome",
"https://github.com/jbirdvegas/external_jbirdvegas_mGerrit",
"https://github.com/JBirdVegas/external_jbirdvegas_mGerrit",
"https://github.com/maks/MGit",
"https://github.com/gatheringhallstudios/MHGenDatabase",
"https://github.com/raulhaag/MiMangaNu",
"https://github.com/easytargetmixel/micopi_android",
"https://github.com/mridang/microchip",
"https://github.com/bitplane/Microphone",
"https://github.com/MartiniMoe/MIDICtrl",
"https://github.com/graham22/Classic",
"https://github.com/ikarus23/MifareClassicTool",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/alketii/mighty-knight",
"https://github.com/evancharlton/android-mileage",
"https://github.com/vamartid/Minesweeper",
"https://github.com/minetest/minetest",
"https://github.com/rubenwardy/mtmods4android",
"https://github.com/KOBUGE-Games/minilens",
"https://github.com/rubenroy/Minimal-Todo",
"https://github.com/niteshpatel/ministocks",
"https://github.com/imshyam/mintube",
"https://github.com/mattgmg1990/miracast-widget",
"https://github.com/httpdispatch/MissedNotificationsReminder",
"https://github.com/artetxem/mitzuli",
"https://github.com/inguin/moneybalance",
"https://github.com/andviane/moon",
"https://github.com/mannd/morbidmeter-android",
"https://github.com/rosenpin/More-For-GO",
"https://github.com/mosmetro-android/mosmetro-android",
"https://github.com/CarstenKarbach/MoTAC",
"https://github.com/chrismiceli/motp",
"https://github.com/cerisara/mousetodon",
"https://github.com/movim/movim_android",
"https://github.com/mozilla/MozStumbler",
"https://github.com/microg/IchnaeaNlpBackend",
"https://github.com/abarisain/dmix",
"https://github.com/AEFeinstein/mtg-familiar",
"https://github.com/crazyhitty/Munch",
"https://github.com/mupen64plus-ae/mupen64plus-ae",
"https://github.com/MaxFour/Music-Player",
"https://github.com/enricocid/Music-Player-GO",
"https://github.com/romannurik/muzei",
"https://github.com/mtotschnig/MyExpenses",
"https://github.com/gjedeer/mylocation",
"https://github.com/albertolalanda/new-ultrasonic-fork-for-MyMusicQoE",
"https://github.com/aykit/MyOwnNotes",
"https://github.com/lenchan139/NCBookmark",
"https://github.com/ram-on/NetcfgWidget",
"https://github.com/M66B/NetGuard",
"https://github.com/scheich/Network",
"https://github.com/dotWee/MicroPinner",
"https://github.com/samuelclay/NewsBlur",
"https://github.com/nextcloud/android",
"https://github.com/nerzhul/ownCloud-SMS-App",
"https://github.com/nextgis/android_gisapp",
"https://github.com/nadam/nfc-reader",
"https://github.com/MichaelEvans/NightModeEnabler",
"https://github.com/Shirakumo/ocelot",
"https://github.com/OGRECave/ogre",
"https://github.com/openintents/filemanager",
"https://github.com/openintents/shoppinglist",
"https://github.com/ndleyton/OneTwo",
"https://github.com/GunshipPenguin/open_flood",
"https://github.com/nexes/Android-File-Manager",
"https://github.com/ctodobom/OpenNoteScanner",
"https://github.com/Rudloff/openvegemap-cordova",
"https://github.com/eolwral/OSMonitor",
"https://github.com/osmandapp/Osmand",
"https://github.com/labexp/osmtracker-android",
"https://github.com/Luorrak/Ouroboros",
"https://github.com/owncloud/android",
"https://github.com/nbossard/packlist",
"https://github.com/NightWhistler/PageTurner",
"https://github.com/ValleZ/Paper-Wallet",
"https://github.com/devmil/PaperLaunch",
"https://github.com/ligi/PassAndroid",
"https://github.com/SecUSo/privacy-friendly-passwordgenerator",
"https://github.com/zeapo/Android-Password-Store",
"https://github.com/Swati4star/Images-to-PDF",
"https://github.com/j4velin/Pedometer",
"https://github.com/SecUSo/privacy-friendly-pedometer",
"https://github.com/Frozen-Developers/android-periodic-table",
"https://github.com/PGPAuth/PGPAuth_Android",
"https://github.com/ScreamingHawk/phone-saver",
"https://github.com/PhotoBackup/client-android",
"https://github.com/MrFlyingToasterman/Pijaret",
"https://github.com/kaputnikGo/PilferShushJammer",
"https://github.com/fvasco/pinpoi",
"https://github.com/rnauber/pipepanic-android",
"https://github.com/lukaslihotzki/pixelflood",
"https://github.com/dahlia/muzei-pixiv",
"https://github.com/playmusicexporter/playmusicexporter",
"https://github.com/0xFireball/PluckLockEx",
"https://github.com/Utyff/pMetro",
"https://github.com/thasmin/Podax",
"https://github.com/caarmen/poet-assistant",
"https://github.com/JSandomierz/pcis",
"https://github.com/beriain/PolarClock",
"https://github.com/splondike/polipoid",
"https://github.com/VelbazhdSoftwareLLC/Politrics",
"https://github.com/huckleberrypie/pollywog",
"https://github.com/Nyubis/Pomfshare",
"https://github.com/aaronjwood/PortAuthority",
"https://github.com/xargsgrep/PortKnocker",
"https://github.com/palfrey/postcode",
"https://github.com/janoliver/pOT-Droid",
"https://github.com/hrydgard/ppsspp",
"https://github.com/metinkale38/prayer-times-android",
"https://github.com/SimonMarquis/Android-PreferencesManager",
"https://github.com/DamienOReilly/PrepayCredit",
"https://github.com/pretix/pretixdroid",
"https://github.com/smithdtyler/prettygoodmusicplayer",
"https://github.com/bpeel/prevo",
"https://github.com/quaap/Primary",
"https://github.com/wolpi/prim-ftpd",
"https://github.com/andviane/prism",
"https://github.com/brarcher/protect-baby-monitor",
"https://github.com/phpsysinfo/psiandroid",
"https://github.com/fossasia/pslab-android",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/MihaiBalint/TimisoaraPublicTransport",
"https://github.com/PuffOpenSource/Puff-Android",
"https://github.com/chrisboyle/sgtpuzzles",
"https://github.com/shlomif/PySolFC",
"https://github.com/moezbhatti/qksms",
"https://github.com/SecUSo/privacy-friendly-qr-scanner",
"https://github.com/xloem/qrstream",
"https://github.com/sandsmark/QuasselDroid",
"https://github.com/Ohmnibus/quick-dice-roller",
"https://github.com/rosenpin/QuickDrawEverywhere",
"https://github.com/rdoeffinger/Dictionary",
"https://github.com/himmele/quickdroid",
"https://github.com/QuickLyric/QuickLyric",
"https://github.com/scoute-dich/QuitSmoking",
"https://github.com/cesarvaliente/quitesleep",
"https://github.com/frrahat/Quran-For-My-Android",
"https://github.com/andybalaam/rabbit-escape",
"https://github.com/mrksbrg/RacketGhost",
"https://github.com/openbmap/radiocells-scanner-android",
"https://github.com/openbmap/radiocells-nlp-android",
"https://github.com/segler-alex/RadioDroid",
"https://github.com/sanderbaas/rainalarm-android",
"https://github.com/OEP/rainwave-android",
"https://github.com/eidottermihi/rpicheck",
"https://github.com/engSERGIU/React",
"https://github.com/aminecmi/ReaderforSelfoss",
"https://github.com/SecUSo/privacy-friendly-reckoning-skills",
"https://github.com/jonasbleyl/Recurrence",
"https://github.com/LibreShift/red-moon",
"https://github.com/micwallace/reddinator",
"https://github.com/martinchodev/RedPanal-Android-WebApp",
"https://github.com/QuantumBadger/RedReader",
"https://github.com/vi/redscreen.apk",
"https://github.com/phikal/ReGeX",
"https://github.com/Leszek111/ReLaunchX",
"https://github.com/uatach/reminders",
"https://github.com/onyxbits/remotekeyboard",
"https://github.com/brarcher/rental-calc",
"https://github.com/no-go/ReoTwe",
"https://github.com/futurice/meeting-room-tablet",
"https://github.com/IbrahimYousre/Resume-Builder",
"https://github.com/m45t3r/retrobreaker",
"https://github.com/no-go/TextThing",
"https://github.com/mikljohansson/retroboy",
"https://github.com/RetroShare/RetroShare",
"https://github.com/MCMrARM/revolution-irc",
"https://github.com/demantz/RFAnalyzer",
"https://github.com/fasteque/rgb-tool",
"https://github.com/no-go/RickApp",
"https://github.com/kyriog/rights-alert",
"https://github.com/vector-im/riot-android",
"https://github.com/guardianproject/ripple",
"https://github.com/mdecorde/BAC76",
"https://github.com/norenh/RKFRead",
"https://github.com/wseemann/RoMote",
"https://github.com/abcdjdj/RootVerifier-APP",
"https://github.com/jfcolom/rosary",
"https://github.com/phuang/RotationLock",
"https://github.com/yolosec/routerkeygenAndroid",
"https://github.com/lpar/RPN",
"https://github.com/scoutant/rpn",
"https://github.com/martinmarinov/rtl_tcp_andro-",
"https://github.com/SecUSo/privacy-friendly-ruler",
"https://github.com/Marlinski/Rumble",
"https://github.com/awaken/sanity",
"https://github.com/ligi/SatoshiProof",
"https://github.com/mvglasow/satstat",
"https://github.com/JonasCz/save-for-offline",
"https://github.com/TTTDevs/NextCloudBookmarksAndroid",
"https://github.com/lkorth/screen-notifications",
"https://github.com/aravindsagar/ScreenShift",
"https://github.com/dkrivoruchko/ScreenStream",
"https://github.com/mportuesisf/ScreenInfo",
"https://github.com/Cj-Malone/Screens",
"https://github.com/rosenpin/Screenshot-Sharer",
"https://github.com/VelbazhdSoftwareLLC/Scribe4",
"https://github.com/mo3rfan/ScrollSocket",
"https://github.com/caarmen/scrumchatter",
"https://github.com/jerickson314/sdscanner",
"https://github.com/haiwen/seadroid",
"https://github.com/quaap/SeafoodBerserker",
"https://github.com/vishesh/sealnote",
"https://github.com/marcoM32/SeaMapDroid",
"https://github.com/scottamain/Search_Light",
"https://github.com/farmerbb/SecondScreen",
"https://github.com/SimonMarquis/Android-SecretCodes",
"https://github.com/Fr4gorSoftware/SecScanQR",
"https://github.com/Somethingweirdhere/Secure-Photo-Viewer",
"https://github.com/sileht/SeeksWidget",
"https://github.com/MrBIMC/SELinuxModeChanger",
"https://github.com/arpruss/sendreduced",
"https://github.com/mtotschnig/SendWithFtp",
"https://github.com/ianmcxa/vortaro",
"https://github.com/onyxbits/sensorreadout",
"https://github.com/mustafa01ali/SensorsSandbox",
"https://github.com/SensorApps/Sensors2OSC",
"https://github.com/SensorApps/Sensors2Pd",
"https://github.com/servalproject/batphone",
"https://github.com/richsmith/sexytopo",
"https://github.com/SteamGifts/SteamGifts",
"https://github.com/sheimi/SGit",
"https://github.com/dimtion/Shaarlier",
"https://github.com/markusfisch/ShaderEditor",
"https://github.com/sylvek/sharemyposition",
"https://github.com/tengusw/share_to_clipboard",
"https://github.com/marcosdiez/shareviahttp",
"https://github.com/marcosdiez/shareviahttp#changelog",
"https://github.com/queler/sharetobrowser",
"https://github.com/00-Evan/shattered-pixel-dungeon",
"https://github.com/try2codesecure/ShellMS",
"https://github.com/js-labs/ShellsMP",
"https://github.com/dsoulayrol/android-sholi",
"https://github.com/woefe/ShoppingList",
"https://github.com/SecUSo/privacy-friendly-shopping-list",
"https://github.com/PrivacyApps/calendar-contacts-shortcuts",
"https://github.com/billthefarmer/shorty",
"https://github.com/kebernet/shortyz",
"https://github.com/ShowMeHills/ShowMeHills",
"https://github.com/MGaetan89/ShowsRage",
"https://github.com/scoute-dich/Sieben",
"https://github.com/cody82/sigfood",
"https://github.com/billthefarmer/sig-gen",
"https://github.com/Lanchon/sigspoof-checker",
"https://github.com/hoihei/Silectric",
"https://github.com/SilenceIM/Silence",
"https://github.com/stanipintjuk/Silverfish",
"https://github.com/EmmanuelMess/Simple-Accounting",
"https://github.com/hwki/SimpleBitcoinWidget",
"https://github.com/TobiasBielefeld/Simple-Brick-Games",
"https://github.com/eldarerathis/Simple-Chess-Clock",
"https://github.com/smarek/Simple-Dilbert",
"https://github.com/DF1E/SimpleExplorer",
"https://github.com/thelinuxgeekcommunity/simpleirc",
"https://github.com/rkkr/simple-keyboard",
"https://github.com/tgwizard/sls",
"https://github.com/toxtox/SimplePhilosopherstoneWidget",
"https://github.com/franciscofranco/Simple-Reboot-app",
"https://github.com/TobiasBielefeld/Simple-Search",
"https://github.com/tranquvis/SimpleSmsRemote",
"https://github.com/TobiasBielefeld/Simple-Solitaire",
"https://github.com/Jizzu/SimpleToDo",
"https://github.com/Sparker0i/Weather",
"https://github.com/vvviperrr/SimpleRT",
"https://github.com/Chessmasterrr/SimpleStatsWidget",
"https://github.com/mpcjanssen/simpletask-android",
"https://github.com/aidin36/simpletextcrypt",
"https://github.com/enricocid/Simply-Solid",
"https://github.com/no-go/ViboraFeed",
"https://github.com/whitequark/SIPCaller",
"https://github.com/robert7k/sipswitch",
"https://github.com/i-p-tel/sipdroid",
"https://github.com/namlit/siteswap_generator",
"https://github.com/sky-map-team/stardroid",
"https://github.com/ram-on/SkyTube",
"https://github.com/ccrama/Slide",
"https://github.com/trikita/slide",
"https://github.com/scheich/SlideItLoud",
"https://github.com/marcopar/SliderSynth",
"https://github.com/ScreamingHawk/android-slideshow",
"https://github.com/handschuh/Slight-backup",
"https://github.com/rignaneseleo/SlimSocial-for-Facebook",
"https://github.com/rignaneseleo/SlimSocial-for-Twitter",
"https://github.com/frankmorgner/vsmartcard",
"https://github.com/Sensirion/SmartGadget-Android",
"https://github.com/wbaumann/SmartReceiptsLibrary",
"https://github.com/timnew/AndroidInfrared",
"https://github.com/kenCode-de/smartcoins-wallet",
"https://github.com/Phantast/smartnavi",
"https://github.com/jberkel/sms-backup-plus",
"https://github.com/itds-consulting/android-silent-ping-sms",
"https://github.com/yeriomin/SmsScheduler",
"https://github.com/badaix/snapcast",
"https://github.com/EXL/Snooder21",
"https://github.com/xmikos/SnooperStopper",
"https://github.com/aario/snotepad",
"https://github.com/mobilepearls/com.mobilepearls.sokoban",
"https://github.com/agnibho/solarcompass",
"https://github.com/retrobits/son_of_hunkypunk",
"https://github.com/dkim0419/SoundRecorder",
"https://github.com/meonwax/soundboard",
"https://github.com/bottiger/SoundWaves",
"https://github.com/0xe1f/Spark360",
"https://github.com/NewProggie/SparkleShare-Android",
"https://github.com/Etuldan/spaRSS",
"https://github.com/wrr/speech_trainer",
"https://github.com/flyingrub/SpeedMeter",
"https://github.com/mikereidis/spirit2_free",
"https://github.com/fyhertz/spydroid-ipcamera",
"https://github.com/fr3ts0n/StageFever",
"https://github.com/xgouchet/Stanley",
"https://github.com/Sw24Softwares/StarkeVerben",
"https://github.com/grmpl/StepandHeightcounter",
"https://github.com/premnirmal/StockTicker",
"https://github.com/zikalify/StoicReading",
"https://github.com/KodarKooperativet/NotificationStopwatch",
"https://github.com/enricocid/Storage-USB",
"https://github.com/Valodim/Stratum0Widget",
"https://github.com/westnordost/StreetComplete",
"https://github.com/LonamiWebs/Stringlate",
"https://github.com/LonamiWebs/Stringlate#donations",
"https://github.com/crysxd/Studiportal-Checker",
"https://github.com/SecUSo/privacy-friendly-sudoku",
"https://github.com/llaske/Sugarizer",
"https://github.com/pejic/Summation",
"https://github.com/forrestguice/SuntimesWidget",
"https://github.com/xxv/SuperGenPass",
"https://github.com/supertuxkart/stk-code",
"https://github.com/phhusson/Superuser",
"https://github.com/zoff99/surespot-android",
"https://github.com/ligi/SurvivalManual",
"https://github.com/VelbazhdSoftwareLLC/SvarkaOddsCalculator",
"https://github.com/adrianchifor/Swiftnotes",
"https://github.com/err4nt/SwpieView",
"https://github.com/n76/Symphony",
"https://github.com/maxammann/music-cyclon",
"https://github.com/Kadabash/SyncOnWifi",
"https://github.com/wizmer/syncorg",
"https://github.com/mo3rfan/syncplayer",
"https://github.com/syncthing/syncthing-android",
"https://github.com/syncthing/syncthing-lite",
"https://github.com/TheAkki/Synctool",
"https://github.com/scheich/SyncWifi",
"https://github.com/Tortel/SysLog",
"https://github.com/fAndreuzzi/TUI-ConsoleLauncher",
"https://github.com/inorichi/tachiyomi",
"https://github.com/trikita/talalarmo",
"https://github.com/google/talkback",
"https://github.com/w84death/Tanks-of-Freedom",
"https://github.com/gabm/TapAndTurn",
"https://github.com/wsdfhjxc/taponium",
"https://github.com/farmerbb/Taskbar",
"https://github.com/dmfs/opentasks",
"https://github.com/tasks/tasks",
"https://github.com/ralphleon/TeaTimer",
"https://github.com/yourealwaysbe/teacup",
"https://github.com/negativedensity/techahashi",
"https://github.com/ATryder/TEdit",
"https://github.com/Telegram-FOSS-Team/Telegram-FOSS",
"https://github.com/jlelse/teleposter",
"https://github.com/davidar/tensor",
"https://github.com/open-keychain/termbot",
"https://github.com/jackpal/Android-Terminal-Emulator",
"https://github.com/termux/termux-app",
"https://github.com/termux/termux-api",
"https://github.com/termux/termux-boot",
"https://github.com/termux/termux-float",
"https://github.com/termux/termux-styling",
"https://github.com/termux/termux-tasker",
"https://github.com/SubhamTyagi/dork-explore",
"https://github.com/TheRedSpy15/LTECleanerFOSS",
"https://github.com/termux/termux-widget",
"https://github.com/RinatKurmaev/Tether-companion",
"https://github.com/paulmach/Text-Edit-for-Android",
"https://github.com/onyxbits/TextFiction",
"https://github.com/SimpleMobileTools/Simple-Thank-You",
"https://github.com/francescosoave/TIS_android",
"https://github.com/TheFakeMontyOnTheRun/knightsofalentejo",
"https://github.com/varlesh/theia-icon-theme",
"https://github.com/scheich/Throughput",
"https://github.com/meoblast001/thugaim",
"https://github.com/lordi/tickmate",
"https://github.com/TilelessMap/TilelessMap",
"https://github.com/ThibaudM/timelapse-sony",
"https://github.com/ambrice/timesheet",
"https://github.com/LuK1337/TimeTable2",
"https://github.com/xperia64/timidity-ae",
"https://github.com/Vilbrekin/tinc_gui",
"https://github.com/pacien/tincapp",
"https://github.com/velazcod/Tinfoil-Facebook",
"https://github.com/fistons/TinyTinyFeed",
"https://github.com/redfish64/TinyTravelTracker",
"https://github.com/sorz/TinyKeePass",
"https://github.com/joaomneto/TitanCompanion",
"https://github.com/SecUSo/privacy-friendly-todo-list",
"https://github.com/JakeLane/Toffeed",
"https://github.com/k3b/toGoZip",
"https://github.com/Fortyseven/ToneDef",
"https://github.com/hgdev-ch/toposuite-android",
"https://github.com/MrDoomy/Torch",
"https://github.com/anselm94/Torchie-Android",
"https://github.com/kaeptmblaubaer1000/android-torchlight",
"https://github.com/SecUSo/privacy-friendly-torchlight",
"https://github.com/sujithkanna/TouchDetector",
"https://github.com/wistein/TourCount",
"https://github.com/zamojski/TowerCollector",
"https://github.com/zoff99/CampFahrplan",
"https://github.com/traccar/traccar-client-android",
"https://github.com/mathisdt/trackworktime",
"https://github.com/y20k/trackbook",
"https://github.com/HassanHeydariNasab/trans",
"https://github.com/erickok/transdroid",
"https://github.com/erickok/transdroid-search",
"https://github.com/wistein/TransektCount",
"https://github.com/y20k/transistor",
"https://github.com/grote/Transportr",
"https://github.com/ybonnel/TransportsRennes",
"https://github.com/genonbeta/TrebleShot",
"https://github.com/equeim/tremotesf-android",
"https://github.com/trezor/trezor-android",
"https://github.com/whirish/Tri-Valley-Buses",
"https://github.com/koelleChristian/trickytripper",
"https://github.com/fabmazz/triesteinbus",
"https://github.com/zoff99/ToxAndroidRefImpl",
"https://github.com/ebaschiera/TripleCamel",
"https://github.com/TripSit/tripmobile",
"https://github.com/teal77/trireme",
"https://github.com/Dryec/tron-wallet-android",
"https://github.com/mlsoft/Trycorder5",
"https://github.com/nilsbraden/ttrss-reader-fork",
"https://github.com/TobiasSchwirten/tuiodroid",
"https://github.com/billthefarmer/tuner",
"https://github.com/HassanHeydariNasab/turo",
"https://github.com/tuskyapp/Tusky",
"https://github.com/tutao/tutanota",
"https://github.com/VelbazhdSoftwareLLC/tuty-fruty-slot-for-android",
"https://github.com/tux4kids/Tuxpaint-Android",
"https://github.com/42SK/TVKILL",