-
Notifications
You must be signed in to change notification settings - Fork 16
/
links.txt
1319 lines (1319 loc) · 58.3 KB
/
links.txt
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/1gravity/android-rteditor
https://github.com/1hakr/anexplorer
https://github.com/1hakr/ataxer
https://github.com/47deg/helios
https://github.com/47deg/translate-bubble-android
https://github.com/6thsolution/apexnlp
https://github.com/7heaven/bitmapmesh
https://github.com/abbas-oveissi/androidmodularization
https://github.com/abbas-oveissi/charter
https://github.com/abbas-oveissi/myfavoriteandroidprojects
https://github.com/abbas-oveissi/searchmovies
https://github.com/abbashosseini/android-weather
https://github.com/abbashosseini/persiandt
https://github.com/abbashosseini/vinci
https://github.com/abbassoftware/imagegallery
https://github.com/abdollahpour/jjalali
https://github.com/abdyer/android-intro
https://github.com/abhinav272/newsapp
https://github.com/ac-pm/inspeckage
https://github.com/acharkit/acharkit-android
https://github.com/achep/headsup
https://github.com/adennie/fb-android-dagger
https://github.com/adevintaspain/android-reactivelocation
https://github.com/adevintaspain/prado
https://github.com/adevintaspain/protein
https://github.com/adevintaspain/retroswagger
https://github.com/adevintaspain/rxpager
https://github.com/adgad/kboard
https://github.com/adibfara/lives
https://github.com/adilsoomro/raised-center-tab-in-android
https://github.com/adityakamble49/dbxdroid
https://github.com/adityakamble49/dbxdroiddemo
https://github.com/adrianbukros/github-multiplatform-example
https://github.com/adrielcafe/nmsalphabetandroidapp
https://github.com/afollestad/bridge
https://github.com/afollestad/shared-element-transition-samples
https://github.com/afollestad/vvalidator
https://github.com/aghabeiki/inappverify
https://github.com/agis-/git-style-guide
https://github.com/agoda-com/ninjato
https://github.com/ahmadnemati/8-puzzle
https://github.com/airbnb/mvrx
https://github.com/ajermakovics/jvm-mon
https://github.com/ajian-studio/gadownloading
https://github.com/akarnokd/rxjavaretrofitadapter
https://github.com/akshaychordiya/mvvmnewsapptemplate
https://github.com/akshaychordiya/news
https://github.com/akshaychordiya/newsappmvi
https://github.com/alaasalman/ussdinterceptor
https://github.com/alesms/projectpermissions
https://github.com/alessandrococco/jcodecollector
https://github.com/alexjlockwood/adp-delightful-details
https://github.com/alexjlockwood/android-lint-checks-demo
https://github.com/alexjlockwood/kyrie
https://github.com/alexjlockwood/material-pause-play-animation
https://github.com/alexjlockwood/shapeshifter
https://github.com/alexliusheng/badgeview
https://github.com/ali-sardari/persianrangedatepicker
https://github.com/ali77gh/easydataandroid
https://github.com/aliab/persian-textview
https://github.com/aliab/website-in-webview
https://github.com/alibaba/arouter
https://github.com/alibaba/atlas
https://github.com/alirezaafkar/phuzei
https://github.com/alirezaafkar/sundatepicker
https://github.com/alirezanazari/cleanarchitectir
https://github.com/allenxuan/xuanimageview
https://github.com/alvinj/kotlinquickreference
https://github.com/alxgrk/blendedbackground
https://github.com/amanjeetsingh150/rxanime
https://github.com/amarjain07/stickyscrollview
https://github.com/amejia481/associate-android-developer-certification
https://github.com/amigold/fundapter
https://github.com/aminography/minesweeper
https://github.com/amitshekhariitbhu/awesome-android-complete-reference
https://github.com/amitshekhariitbhu/awesome-android-things
https://github.com/amlcurran/materialpagerindicator
https://github.com/amurani/meterview
https://github.com/andersericsson/anchorview
https://github.com/andersericsson/multicolumnlist
https://github.com/andnexus/android-testing
https://github.com/andotp/andotp
https://github.com/andreale94/moneywallet
https://github.com/andrewgiang/spritzertextview
https://github.com/andrewhayden/archive-patcher
https://github.com/android-cn/android-open-project-analysis
https://github.com/android-infoedge/tracker
https://github.com/android/android-bluetoothadvertisements
https://github.com/android/android-deviceowner
https://github.com/android/android-navigationdrawer
https://github.com/android/android-pictureinpicture
https://github.com/android/android-play-games-in-motion
https://github.com/android/android-screencapture
https://github.com/android/android-testing
https://github.com/android/android-universalmusicplayer
https://github.com/android/android-unsplash
https://github.com/android/android-xyztouristattractions
https://github.com/android/animation-samples
https://github.com/android/architecture-components-samples
https://github.com/android/architecture-samples
https://github.com/android/io2014-codelabs
https://github.com/android/plaid
https://github.com/android/sunflower
https://github.com/android/testing-samples
https://github.com/android/uamp
https://github.com/android10/android-aopexample
https://github.com/android10/android-cleanarchitecture-kotlin
https://github.com/androidatelier/lunch-in
https://github.com/androiddeveloperlb/dialogshard
https://github.com/androiddeveloperlb/parallaxviewpagers
https://github.com/androiddeveloperlb/roothelper
https://github.com/andyb129/flipsidecamera
https://github.com/anitaa1990/android-cheat-sheet
https://github.com/anitaa1990/biometric-auth-sample
https://github.com/anitaa1990/dagger2-sample
https://github.com/ankidroid/anki-android
https://github.com/annimon/paperstylewidgets
https://github.com/anthonycr/lightning-browser
https://github.com/antoniolg/materialeverywhere
https://github.com/anupcowkur/here-be-dragons
https://github.com/anylifezlb/scrolltextview
https://github.com/aodevblue/materialkeylines
https://github.com/apollographql/apollo-android
https://github.com/aporter/coursera-android
https://github.com/appdictive/appfeedbackdialog
https://github.com/appmattus/layercache
https://github.com/appwoodoo/appwoodoo-android-sdk
https://github.com/arasthel/googlenavigationdrawermenu
https://github.com/arisono/funnelview
https://github.com/aritraroy/ultimateandroidreference
https://github.com/arkivanov/mvidroid
https://github.com/arnaudgiuliani/uniflow-kt
https://github.com/arshadalisoomro/nimbleme
https://github.com/artem-zinnatullin/rxjavaproguardrules
https://github.com/artem-zinnatullin/thecontext-podcast
https://github.com/arunkumar9t2/transition-x
https://github.com/ashok-varma/gander
https://github.com/aspsine/loadframelayout
https://github.com/astuetz/android-viewpagertabs
https://github.com/astuetz/android-viewpagertabs-example
https://github.com/ataulm/material-design-components-showcase
https://github.com/aurae/android-junit5
https://github.com/auto-droid/tmdb-app
https://github.com/autodesk/coroutineworker
https://github.com/autsoft/krate
https://github.com/avjinder/bookie
https://github.com/azimolabs/api-error-handler
https://github.com/azimolabs/fastlane-plugin-automated-test-emulator-run
https://github.com/azimolabs/language-switcher-tile
https://github.com/azimolabs/review-reporter
https://github.com/azoft/collagemaker-android
https://github.com/b2b2244424/androidstudiosuperplugin
https://github.com/babylonhealth/certificate-transparency-android
https://github.com/badoo/mvicore
https://github.com/badoo/reaktive
https://github.com/baidao/tinker-manager
https://github.com/balamaci/rxjava-walkthrough
https://github.com/balrampandey19/coloredvector-android
https://github.com/balsikandar/android-studio-plugins
https://github.com/bamsbamx/autosystemapp
https://github.com/bangarharshit/rxbus
https://github.com/bapspatil/flickoff
https://github.com/baruckis/android-actionbartabs
https://github.com/baruckis/android-slidingmenuimplementation
https://github.com/basil2style/android-spreadsheet
https://github.com/basil2style/getid
https://github.com/basil2style/retrofit-android-basic
https://github.com/bcsl/cursorwheellayout
https://github.com/bduncavage/recyclerviewtotherescue
https://github.com/beemdevelopment/aegis
https://github.com/behzadam/androiotesting
https://github.com/bennykok/openlauncher
https://github.com/benoffi7/hodor-keyboard
https://github.com/bernaferrari/emojislider
https://github.com/bernaferrari/gradlekotlinconverter
https://github.com/bettergram/bettergram-android
https://github.com/bhavyakaria/android
https://github.com/bigfatsea/suid
https://github.com/bignerdranch/typesetter
https://github.com/bilibili/boxing
https://github.com/bilibili/danmakuflamemaster
https://github.com/binglingziyu/owlview
https://github.com/bitvale/fitnesschallenge
https://github.com/bjoernq/adc
https://github.com/bkhezry/persiansearchablespinner
https://github.com/blacklane/jvm-source-guidelines
https://github.com/blanyal/remindly
https://github.com/blazsolar/android-collapse-calendar-view
https://github.com/blinkist/dagger2-shaded
https://github.com/blipinsk/cold-reboot
https://github.com/blogcat/android-expandabletextview
https://github.com/bluemor/android-pulllayout
https://github.com/bluemor/draglayout
https://github.com/bluemor/viewcontainer
https://github.com/bobblekeyboard/dexter
https://github.com/bobbylight/rsyntaxtextarea
https://github.com/bobbylight/rtext
https://github.com/bobbyloujo/bobengine
https://github.com/bod/alibglitch
https://github.com/borisf/classyshark-calculate-size
https://github.com/borisf/classyshark-user-guide
https://github.com/bowyer-app/sqlbritewithautovalue
https://github.com/bowyer-app/storepreview
https://github.com/bskim45/rxjava-walkthrough-kotlin
https://github.com/bufferapp/thumby
https://github.com/bunnyblue/apkautoinstaller
https://github.com/burhanrashid52/youtubeux
https://github.com/bushijie/parallaxswipeback
https://github.com/busylee999/issue-handler
https://github.com/bytehamster/searchpreference
https://github.com/c-aniruddh/acemusicplayer
https://github.com/c-aniruddh/xplodmusic
https://github.com/cachapa/expandablelayout
https://github.com/camerakit/blurkit-android
https://github.com/camerakit/jpegkit-android
https://github.com/captain-miao/uniqueadapter
https://github.com/card-io/card.io-android-source
https://github.com/cashapp/sqldelight
https://github.com/casterio/buildvariants
https://github.com/castorflex/flipimageview
https://github.com/catalinprata/funcodetuts
https://github.com/catchthecows/androidimagemap
https://github.com/catchthecows/androviews
https://github.com/catchthecows/bigtextbutton
https://github.com/catchthecows/dynamiclayoutviewgroup
https://github.com/catherine22/securitysample
https://github.com/cats-oss/android-gpuimage
https://github.com/cdflynn/touchdemo
https://github.com/cdsap/talaiot
https://github.com/chathurahettiarachchi/timeago
https://github.com/chen-sir/expandabletextview
https://github.com/chenupt/bezierdemo
https://github.com/chiemy/cardview
https://github.com/childofthehorn/android_video_player_types
https://github.com/chililabs/chiliphotopicker
https://github.com/chinavolvocars/recyclerviewapplication
https://github.com/chiragjain/playground
https://github.com/chiragjain/surfacegameproject
https://github.com/chiuki/android-recyclerview
https://github.com/chiuki/animated-vector-drawable
https://github.com/chris-horner/rhythmsticks
https://github.com/chrisbanes/insetter
https://github.com/chrisbanes/philm
https://github.com/chrisbanes/tivi
https://github.com/chrisjenx/parallaxscrollview
https://github.com/chrisrenke/fixedspans
https://github.com/chrisvin/fliptabs
https://github.com/chsmy/dateselecter
https://github.com/chuckerteam/chucker
https://github.com/cirosantilli/android-cheat
https://github.com/cleveroad/cyclemenu
https://github.com/cleverpumpkin/crunchycalendar
https://github.com/cloudmade/chameleon
https://github.com/cloverstudio/spika
https://github.com/cloverstudio/spika-android
https://github.com/cmidt-veasna/android-l-library
https://github.com/codepath/android_guides
https://github.com/codoline/example-encrypt-decrypt-files
https://github.com/coil-kt/coil
https://github.com/commit451/labcoat
https://github.com/commonsguy/cw-advandroid
https://github.com/commonsguy/cw-omnibus
https://github.com/commonsguy/cwac-netsecurity
https://github.com/commonsguy/cwac-saferoom
https://github.com/coolcooldee/sloth
https://github.com/coroutinedispatcher/smoothie
https://github.com/cortinico/slidetoact
https://github.com/cubei/flappycow
https://github.com/curiousnikhil/asynkio
https://github.com/curioustechizen/android-app-pause
https://github.com/curioustechizen/android-double-take
https://github.com/curioustechizen/android-equiwidth-horizontal-layout
https://github.com/curzibn/luban
https://github.com/cuub/sugared-list-animations-sample
https://github.com/cyanogenmod/android_packages_apps_lockclock
https://github.com/czy1121/badgebutton
https://github.com/czy1121/cornerlabelview
https://github.com/dacapricorn/arcmenu
https://github.com/daizhenjun/imagefilterforandroid
https://github.com/dalong982242260/looprotaryswitch
https://github.com/dan-zx/android-materialnavigationdrawer
https://github.com/dan-zx/material-notes
https://github.com/dan-zx/rox-android
https://github.com/danialgoodwin/android-app-contactless-vital-signs
https://github.com/danialgoodwin/android-pdf
https://github.com/danielceinos/cooper
https://github.com/danielzeller/blur-lib-android
https://github.com/danielzeller/depth-lib-android-
https://github.com/danielzeller/metaballs-lib-android
https://github.com/danimahardhika/cafebar
https://github.com/danimahardhika/candybar-library
https://github.com/darkionavey/achievementunlocked-library
https://github.com/darkionavey/cpptimer
https://github.com/darkionavey/dragselectiongridview
https://github.com/darkionavey/swipespinnerwidget
https://github.com/darvds/ribbonmenu
https://github.com/datallboy/materialnavigation
https://github.com/datjandra/daytripper
https://github.com/dbaelz/konclik
https://github.com/deano2390/adbkeyboard
https://github.com/deano2390/openflappybird
https://github.com/deepankarb/fontawesome-to-android
https://github.com/deepmind/lab
https://github.com/dersoncheng/multipletheme
https://github.com/desarrolloantonio/cardstube
https://github.com/desarrolloantonio/twopanels
https://github.com/dev-labs-bg/fast-list
https://github.com/dev-labs-bg/transitioner
https://github.com/dev-labs-bg/twinkle
https://github.com/devexchanges/smooth-expand-collaspe-recyclerview
https://github.com/devinshine/easyloadingbtn
https://github.com/devunwired/custom-touch-examples
https://github.com/devunwired/custom-view-examples
https://github.com/devunwired/recyclerview-playground
https://github.com/devunwired/textdrawable
https://github.com/devvoron/voronimageview
https://github.com/dhosseiny/night-downloader
https://github.com/dhosseiny/themeapp
https://github.com/diegocarloslima/byakugallery
https://github.com/diegocarloslima/floatinggroupexpandablelistview
https://github.com/diffplug/spotless
https://github.com/digitalbuddha/rxstarter
https://github.com/dingmouren/paletteimageview
https://github.com/dinocore1/androidessentials
https://github.com/dkandalov/kotlin-99
https://github.com/dkmeteor/folder-drawerlayout
https://github.com/dkmeteor/patheffecttextview
https://github.com/dlew/android-ripple-drawable-demo
https://github.com/dmayboroda/sko4
https://github.com/dmitrymalkovich/stock-hawk-app
https://github.com/dmytrodanylyk/android-concurrent-database
https://github.com/dmytrodanylyk/lazy-data-loading
https://github.com/dmytrodanylyk/obsidian-colors
https://github.com/dodola/anolefix
https://github.com/dodola/listitemfold
https://github.com/donfuxx/mockinizer
https://github.com/dongjunkun/couponview
https://github.com/doplgangr/secrecy
https://github.com/douban/rexxar-android
https://github.com/draios/falco
https://github.com/drklo/telegram
https://github.com/dropbox/hypershard-android
https://github.com/dsandler/markers
https://github.com/duanhong169/gradientdrawabletuner
https://github.com/duna/tv-epg-android-recyclerview
https://github.com/duolingo/rtl-viewpager
https://github.com/dustookk/androidimagepicker
https://github.com/dworks/actionbarplus
https://github.com/dworks/actionbartoggle
https://github.com/dworks/adateslider
https://github.com/eastwoodyang/annorouter
https://github.com/eastwoodyang/autoquickadapter
https://github.com/eastwoodyang/gradle-repo
https://github.com/eastwoodyang/refreshnestedlayout
https://github.com/eatheat/floatingexample
https://github.com/ebraminio/droidpersiancalendar
https://github.com/edipo2s/circleimgbuttongrouped
https://github.com/edipo2s/inputnumber
https://github.com/edipo2s/wifidirectchat
https://github.com/edubarr/android-ui
https://github.com/efebudak/bottomsheetonboarding
https://github.com/ekx/gitlabandroid
https://github.com/elbehiry/materialheader
https://github.com/eli-fox/lego-catalog
https://github.com/enamin/udacity-showcase
https://github.com/ened/android-marqueeview
https://github.com/enyciaa/androidkeyboardstatechecker
https://github.com/eranboudjnah/randomgenkt
https://github.com/erdo/android-fore
https://github.com/ericmaxwell2003/tictactoe
https://github.com/erpragatisingh/android-1
https://github.com/erpragatisingh/open-source-android-apps
https://github.com/erttyy8821/mydiary
https://github.com/escapeindustries/dotmatrixview
https://github.com/esotericsoftware/kryo
https://github.com/esoxjem/movieguide
https://github.com/essid-ahmed/rippleloder
https://github.com/etar-group/etar-calendar
https://github.com/etiennelenhart/eiffel
https://github.com/evernote/android-state
https://github.com/evernote/fetch
https://github.com/f2prateek/gradle-android-javafmt-plugin
https://github.com/fabianterhorst/isometric
https://github.com/facebook/conceal
https://github.com/facebook/litho
https://github.com/facebook/shimmer-android
https://github.com/facebookincubator/keyframes
https://github.com/facebookincubator/spectrum
https://github.com/fairytale110/bezierseekbar
https://github.com/fallibleinc/security-guide-for-developers
https://github.com/faob-dev/motionlayoutcarousel
https://github.com/farnabaz/radiogeek
https://github.com/farzad119/mymessages-android
https://github.com/fastlane/fastlane
https://github.com/fbsamples/f8app
https://github.com/fbsamples/listviewtorecyclerview
https://github.com/federicoiosue/analitica
https://github.com/federicoiosue/omni-notes
https://github.com/fedestyla/fillingeffect
https://github.com/fikr4n/itl-java
https://github.com/firebase/firebaseui-android
https://github.com/fishwjy/multitype-filepicker
https://github.com/flavienlaurent/colorpicker
https://github.com/flavienlaurent/livepalette
https://github.com/flavienlaurent/panningview
https://github.com/flavienlaurent/spans
https://github.com/flavienlaurent/tickplusdrawable
https://github.com/flavienlaurent/tilteffect
https://github.com/flurgle/blurkit-android
https://github.com/folioreader/folioreader-android
https://github.com/fourlastor/dante
https://github.com/fourlastor/pickle
https://github.com/foxykeep/lifecounter
https://github.com/frapontillo/imageviewex
https://github.com/freeletics/rxredux
https://github.com/freydoonk/persiancalendar
https://github.com/frogermcs/mnist-tflite
https://github.com/fstephany/dagger-example
https://github.com/fuusio/robopupu
https://github.com/fuzz-productions/cutoutviewindicator
https://github.com/gabrielemariotti/androiddev
https://github.com/gabrielemariotti/slidingpanelayoutwithswipe
https://github.com/gedsh/invizible
https://github.com/geecko86/quicklyric
https://github.com/geniushkg/github-oauth
https://github.com/genonbeta/trebleshot
https://github.com/genymobile/gnirehtet
https://github.com/ghost1372/mzip-android
https://github.com/ghostbuster91/espresso-animations-disabled-test
https://github.com/ghostbuster91/ktm
https://github.com/gilvegliach/transparenttexttextview
https://github.com/girishbhutiya/android-custom-tabbar
https://github.com/github-changelog-generator/github-changelog-generator
https://github.com/githubwing/threedlayout
https://github.com/giuliohome/tweetsearch
https://github.com/gjiazhe/layoutswitch
https://github.com/gleasonk/pubnub-android-lolli-chat
https://github.com/gmatyszczak/screen-generator-plugin
https://github.com/gojuno/mainframer
https://github.com/goldenmace/droid-runtimepermissions
https://github.com/gongwen/marqueeviewlibrary
https://github.com/google/bundletool
https://github.com/google/conscrypt
https://github.com/google/filament
https://github.com/google/hover
https://github.com/google/keyczar
https://github.com/google/oboe
https://github.com/google/ringdroid
https://github.com/google/santa-tracker-android
https://github.com/google/search-samples
https://github.com/googlearchive/android-constraintlayoutexamples
https://github.com/googlecreativelab/sprayscape
https://github.com/gradle/gradle-completion
https://github.com/greenrobot/eventbus
https://github.com/greenrobot/objectbox
https://github.com/gregriggins36/to-google-spreadsheet
https://github.com/grivos/spanomatic
https://github.com/groupon/featureadapter
https://github.com/groupon/grox
https://github.com/guangzq/stepdialog
https://github.com/guardianproject/notecipher
https://github.com/gumil/kaskade
https://github.com/guojunustb/verticalbannerview
https://github.com/gurpreetsk95/stringer
https://github.com/gyorgygabor/fragment-navigation-2.0
https://github.com/gyw520gyw/groupbuttonview
https://github.com/h4de5ing/androidcommon
https://github.com/hanks-zyh/passcodeview
https://github.com/hariadi/viewer
https://github.com/harjot-oberai/musicdna
https://github.com/haroldadmin/moonshot
https://github.com/haroldadmin/vector
https://github.com/hashlin/constraintflowplayground
https://github.com/hearsilent/discreteslider
https://github.com/hearsilent/pixelslide
https://github.com/heinrichreimer/open-source-library-request-manager
https://github.com/hellofresh/deblibs-gradle-plugin
https://github.com/hemker/apkgrabber
https://github.com/henriquerocha/android-colorthief
https://github.com/henrychuangtw/autoinsertedittext
https://github.com/hesamedin/ntpclock
https://github.com/hexworks/amethyst
https://github.com/hidroh/materialistic
https://github.com/hitherejoe/constraints
https://github.com/hitherejoe/mondroid
https://github.com/hitomis/transferimage
https://github.com/holylobster/nuntius-android
https://github.com/hooshkar/androidmulticalendartools
https://github.com/hosseinrashno/64
https://github.com/hotbitmapgg/bilibili-android-client
https://github.com/hozakan/materialdesigncolorpalette
https://github.com/hpdx/danmukulight
https://github.com/http4k/http4k
https://github.com/huangyz0918/androidwm
https://github.com/hudomju/android-swipe-to-dismiss-undo
https://github.com/hugeterry/coordinatortablayout
https://github.com/hugeterry/ployfun
https://github.com/huhx0015/guildwars2_apiviewer
https://github.com/hujiangtechnology/gradle_plugin_android_aspectjx
https://github.com/husaynhakeem/android-face-detector
https://github.com/huyamin150/-dampview-springingview
https://github.com/huzenan/easygestureunlock
https://github.com/huzenan/easypickerview
https://github.com/huzenan/easypulllayout
https://github.com/hzw1199/android_processbar
https://github.com/iampawan/flutter-ui-kit
https://github.com/iandarwin/android-cookbook-examples
https://github.com/iangclifton/androidfloatlabel
https://github.com/iboalali/android-iconography
https://github.com/ibrahimsn98/android-eth-wallet
https://github.com/ibrahimsn98/nicebottombar
https://github.com/ideaplugins/choco-ktx
https://github.com/idunnololz/animatedexpandablelistview
https://github.com/igorwojda/android-showcase
https://github.com/ihrupin/calendardayviewalgorithm
https://github.com/ihrupin/samples
https://github.com/iielse/retailmenotlist
https://github.com/iizukanao/pigeonholeview
https://github.com/ik024/calendarlibrary
https://github.com/imanneofight/circular_bottom_navigation
https://github.com/imanneofight/overlaprecyclerview
https://github.com/imansdn/smarttimepicker
https://github.com/imanx/android-materialbutton-behavior
https://github.com/imanx/statelayout
https://github.com/immortalz/transitionhelper
https://github.com/inferjay/androiddevtools
https://github.com/infinum/android-goldeneye
https://github.com/infinum/android-prince-of-versions
https://github.com/inflationx/calligraphy
https://github.com/innovattic/android-font-library
https://github.com/inorichi/tachiyomi
https://github.com/inovex/viewpager3d
https://github.com/inserteffect/ai-assets
https://github.com/insertkoinio/koin
https://github.com/instacart/formula
https://github.com/intuit/ssp
https://github.com/ipaulpro/android-itemtouchhelper-demo
https://github.com/iranapps/inappbillinghelper
https://github.com/irvingryan/verifycodeview
https://github.com/ismaeltoe/android-ocr-test
https://github.com/ivanrf/countdownanimation
https://github.com/ixkor/genaroid
https://github.com/j4velin/picturechooser
https://github.com/jackyandroid/androidtvlauncher
https://github.com/jacobcho/onewest
https://github.com/jacquessmuts/rxstarter
https://github.com/jakewharton/android-directionalviewpager
https://github.com/jakewharton/dagger-reflect
https://github.com/jakewharton/diffuse
https://github.com/jakewharton/nopen
https://github.com/jakewharton/retrofit2-kotlinx-serialization-converter
https://github.com/jakewharton/salvage
https://github.com/jakewharton/sdksearch
https://github.com/jamesfrost/simpledo
https://github.com/jaouan/carousel-browsing-example
https://github.com/jaouan/snapandmatch
https://github.com/jariz/materialup
https://github.com/jarroyoesp/kotlinmultiplatform
https://github.com/jasmine8gu/chatserver
https://github.com/jaydenxiao2016/androidfire
https://github.com/jayschwa/androidsliderpreference
https://github.com/jcodeing/anchorimageview
https://github.com/jcodeing/extractwordview
https://github.com/jcodeing/k-sonic
https://github.com/jcodeing/kmedia
https://github.com/jeanboydev/android-cropview
https://github.com/jeanboydev/android-radarview
https://github.com/jeroenmols/modularizationexample
https://github.com/jerrellmardis/amphitheatre
https://github.com/jetbrains/exposed
https://github.com/jhetox/pngencryption
https://github.com/jhetox/whassappforandroid
https://github.com/jiangqqlmj/fastdev4android
https://github.com/jigsaw-code/intra
https://github.com/jkaving/intellij-colors-solarized
https://github.com/jmfayard/buildsrcversions
https://github.com/jnizet/gradle-kotlin-dsl-migration-guide
https://github.com/joaobiriba/wordsearchai
https://github.com/joaocsousa/doubleseekbar
https://github.com/joerogers/espressodescendantactions
https://github.com/johannilsson/android-actionbar
https://github.com/john990/pull-layout
https://github.com/johnjohndoe/proguard
https://github.com/johnpersano/benson
https://github.com/johnpersano/crimetalk-reader
https://github.com/joniks/android-mupdf
https://github.com/josealcerreca/kotlin-std-fun
https://github.com/joseph27/smartringtonemakerlte
https://github.com/jsaund/asyncdiffutil
https://github.com/json-iterator/java
https://github.com/jstumpp/awesome-android
https://github.com/juanchosaravia/autodsl
https://github.com/julesbond007/android-jigsaw-puzzle
https://github.com/justinangel/hijckr
https://github.com/justinmwarner/gesturetutorial
https://github.com/k0shk0sh/fastaccess
https://github.com/kabouzeid/phonograph
https://github.com/kadahlin/animatednavbar
https://github.com/kaeawc/advanced-motionlayout-talk
https://github.com/kaeawc/motion-hourglass
https://github.com/kaeawc/motion-photo-grid
https://github.com/kaeawc/motion-puzzle
https://github.com/kaeawc/motion-tab-layout
https://github.com/kamydeep00178/androidmvvm
https://github.com/kanawish/upvote
https://github.com/karn/sentry
https://github.com/karntrehan/posts
https://github.com/kartikarora/transfer.sh
https://github.com/kartikarora/whattimeisit
https://github.com/karumi/androidaudit
https://github.com/karumi/hagu
https://github.com/karumi/katascreenshotandroid
https://github.com/karumi/kotlinsnapshot
https://github.com/kcochibili/tinydb--android-shared-preferences-turbo
https://github.com/keciciler/onviewtouchholdlistener
https://github.com/kelin-hong/calendarlistview
https://github.com/kenumir/materialsettings
https://github.com/keyboardsurfer/idea-live-templates
https://github.com/kezhenxu94/cache-lite
https://github.com/khacpv/calendar-day-view
https://github.com/khrystal/circlerecyclerview
https://github.com/kickstarter/android-oss
https://github.com/kinecosystem/kin-ecosystem-android-sdk
https://github.com/klinker24/android-dragdismissactivity
https://github.com/klongmitre/android-segmented-control-view
https://github.com/koconder/android-market-api-php
https://github.com/kodein-framework/kodein-di
https://github.com/kofigyan/thermometer
https://github.com/konklone/congress-android
https://github.com/konradstanski/androidautomate
https://github.com/kontalk/androidclient
https://github.com/kot32go/dynamic-load-view
https://github.com/kotlin/anko
https://github.com/kotlin/kotlinx.coroutines
https://github.com/kotlin/kotlinx.serialization
https://github.com/kotlinfarsi/opensourcetutorials-introduction
https://github.com/koush/superuser
https://github.com/kovmarci86/android-secure-preferences
https://github.com/kpbird/android-global-touchevent
https://github.com/kroegerama/bottomsheet-imagepicker
https://github.com/krtkush/marsexplorer
https://github.com/ksoichiro/androidformenhancer
https://github.com/ksoichiro/simplealertdialog-for-android
https://github.com/kyze8439690/reveallayout
https://github.com/labo89/adbgui
https://github.com/lafosca/androidfacecropper
https://github.com/laifeng-android/sopcastcomponent
https://github.com/lambergar/verticalviewpager
https://github.com/laobie/findviewbyme
https://github.com/laocaixw/suspendbuttonlayout
https://github.com/laserwave/calendarview
https://github.com/laurensv/hangman
https://github.com/lawnchairlauncher/lawnchair
https://github.com/ldoublem/alpayring
https://github.com/ldoublem/flightseat
https://github.com/ldoublem/giftcard
https://github.com/ldoublem/ringprogress
https://github.com/ldoublem/selectview
https://github.com/learnncode/demotwitterimagepost
https://github.com/learnncode/listwithdiffrowviewtype
https://github.com/learnncode/tabwidgetsample
https://github.com/lejon/t-sne-java
https://github.com/lemonade-hq/slidesidemenu
https://github.com/lewisjdeane/l-navigation-drawer
https://github.com/lguipeng/notes
https://github.com/lib4/rotatewheelandroid_lib4
https://github.com/libreshift/red-moon
https://github.com/lifedemons/photoviewer
https://github.com/lightsky/awesome-materialdesign
https://github.com/lightsun/android-drag-flowlayout
https://github.com/ligi/fast
https://github.com/lihenggui/blocker
https://github.com/linechen/flickerprogressbar
https://github.com/linkedin/dex-test-parser
https://github.com/linroid/filtermenu
https://github.com/litepalframework/litepal
https://github.com/lithidsoftware/android_wallbox
https://github.com/littlefriendsgroup/androidsdksourceanalysis
https://github.com/littlefriendsgroup/kakacache
https://github.com/liuguangqiang/cookiebar
https://github.com/liuhongtao/paintview
https://github.com/log-tag/android-priority-jobqueue-examples
https://github.com/loopeer/code-reader
https://github.com/lordgreg/sfen
https://github.com/lordtao/android-tao-rest-data-processor
https://github.com/luarca84/luarcaandroidapp
https://github.com/lucamtudor/lantern
https://github.com/lucasr/android-layout-samples
https://github.com/lucksiege/pictureselector
https://github.com/luckyandyzhang/mentionedittext
https://github.com/luckyjayce/eventbus
https://github.com/lufficc/statelayout
https://github.com/lukelorusso/verticalseekbar
https://github.com/luthier-liu/crash-log-report
https://github.com/lxdvs/apk2gold
https://github.com/lyft/domic
https://github.com/lyndonchin/masteringandroiddatabinding
https://github.com/lynfogeek/collapsingheader
https://github.com/lyrebirdstudio/croppy
https://github.com/lzyzsd/sweet-alert-dialog
https://github.com/m3sv/flutter-for-android-developers
https://github.com/m66b/fairemail
https://github.com/maginsoft/mfilechooser
https://github.com/majeurandroid/android-applications-info
https://github.com/maksim-m/popular-movies-app
https://github.com/malmstein/androidtvexplorer
https://github.com/malmstein/yahnac
https://github.com/manishkpr/androidmaterialdesignnavigationdrawer
https://github.com/manishkummar21/androidpdfviewer
https://github.com/manishsri01/androidcustomimageview
https://github.com/manishsri01/multilevellistview
https://github.com/manishsri01/zipunzip
https://github.com/manuelvicnt/mathcoroutinesflow
https://github.com/marcelgsantos/learning-oop-in-php
https://github.com/marcosdiez/shareviahttp
https://github.com/marcouberti/android-auto-fit-button
https://github.com/mariotaku/refreshnow
https://github.com/markmjw/pullscrollview
https://github.com/marknjunge/spoilertext
https://github.com/marktony/paperplane
https://github.com/markushi/android-circlebutton
https://github.com/marty331/overlaytutorial
https://github.com/marvinlabs/android-constrained-widgets
https://github.com/marvinlabs/android-slideshow-widget
https://github.com/marvinlabs/android-unlocker-library
https://github.com/marytts/marytts
https://github.com/master255/immortalplayer
https://github.com/masterwok/simple-vlc-player
https://github.com/material-components/material-components-android
https://github.com/material-foundation/material-remixer
https://github.com/material-foundation/material-remixer-android
https://github.com/material-motion/material-motion-android
https://github.com/matrixxun/pulltozoominlistview
https://github.com/matthieulj/viewpagerparallax
https://github.com/maxr1998/maxlock
https://github.com/mayubao/kuaichuan
https://github.com/mccorby/smartkeyboardngram-android
https://github.com/mcsong/filteredintent
https://github.com/mcxiaoke/android-volley
https://github.com/mcxtzhang/zlayoutmanager
https://github.com/mddanishansari/customfontview
https://github.com/mddanishansari/not-fancy-random-password-generator
https://github.com/meetme/android-horizontallistview
https://github.com/meetme/android-imageviewplus
https://github.com/meetme/android-multistateview
https://github.com/megatronking/svg-android
https://github.com/mehrdadf7/easyokhttp
https://github.com/meili/aceso
https://github.com/meili/thinrplugin
https://github.com/meness/scratch
https://github.com/menny/frankenrobot
https://github.com/mesibo/messenger-app-android
https://github.com/metinkale38/prayer-times-android
https://github.com/mfathi91/persian-date-time
https://github.com/mgouline/android-samples
https://github.com/mgp/effective-rxjava
https://github.com/michaelbull/kotlin-inline-logger
https://github.com/michal-luszczuk/tomorrow-mvp
https://github.com/michelelacorte/flicklauncher
https://github.com/michelelacorte/universallauncher
https://github.com/michenux/yourappidea
https://github.com/micnubinub/materiallibrary
https://github.com/micode/notes
https://github.com/mikepenz/holokitkatdrawer
https://github.com/mikepenz/wallsplash-android
https://github.com/mikescamell/loco-motionlayout
https://github.com/milosmns/contacts-generator-android
https://github.com/mindmac/androideagleeye
https://github.com/mindorksopensource/android-developer-roadmap
https://github.com/mindorksopensource/android-interview-questions
https://github.com/mindorksopensource/editdrawabletext
https://github.com/mindorksopensource/radialprogressbar
https://github.com/mindorksopensource/snaphelperexample
https://github.com/mirkoddd/cpuspyreborn
https://github.com/mirrajabi/view-effects
https://github.com/mjn1369/giphyapp
https://github.com/mjn1369/secureapp
https://github.com/mkodekar/cameradenymyface
https://github.com/mkodekar/trytodothis
https://github.com/mlsdev/droidfm
https://github.com/mmobin789/android-dynamic-search-adapter
https://github.com/moallemi/multinavhost
https://github.com/mobapptuts/recyclerview_image_gallery
https://github.com/mobile-roadmap/android-developer-roadmap
https://github.com/mobsf/mobile-security-framework-mobsf
https://github.com/mockk/mockk
https://github.com/mohamedelidrissi/customtoolbar
https://github.com/mohammadreza2012/shamsicalendar
https://github.com/mohandeath/cryptonews
https://github.com/mollyiv/chatheads
https://github.com/mostafagazar/widgets
https://github.com/motianhuo/vcamerademo
https://github.com/mozilla-lockwise/lockwise-android
https://github.com/mozilla-mobile/android-components
https://github.com/mpieter/twitterlists
https://github.com/mplacona/selfie
https://github.com/mrklar/pageddragdropgrid
https://github.com/mrthiago/android-nav-drawer
https://github.com/msh91/arch
https://github.com/mtcn/motionlayoutexamples
https://github.com/muddz/pixelshot
https://github.com/muddz/viewtobitmap
https://github.com/mukeshsolanki/android-tamper-detector
https://github.com/mumayank/airlocation
https://github.com/mygod/vpnhotspot
https://github.com/n0ise9914/wait
https://github.com/naman14/algorithmvisualizer-android
https://github.com/naman14/arcade
https://github.com/naman14/playnewsstanddemo
https://github.com/naman14/s-tools
https://github.com/nanchen2251/compresshelper
https://github.com/nanohttpd/nanohttpd
https://github.com/nasrabadiam/developer-assistant
https://github.com/nasrabadiam/learnings
https://github.com/nasrabadiam/noti
https://github.com/nasrabadiam/reading-box
https://github.com/nathanielw/android-lollipop-pencil-stencils
https://github.com/nathanielw/material-icons-for-pencil
https://github.com/navabi/imagedownloader
https://github.com/navabi/justifiedtextview
https://github.com/navasmdc/phonetutorial
https://github.com/naveentp/clean-mvvm-newsapp
https://github.com/navi25/retrofitkotlindeferred
https://github.com/nbadal/android-gif-encoder
https://github.com/neamar/kiss
https://github.com/nearbyshops/nearby-shops-end-user-android-app
https://github.com/neild001/seekarc
https://github.com/nekocode/rxlifecycle
https://github.com/nextfaze/dev-fun
https://github.com/nfcforandroid/nfa
https://github.com/nhaarman/ergo
https://github.com/nicolasjafelle/androiddemo
https://github.com/nielssg/simple-recyclerview
https://github.com/nightonke/faceofftogglebutton
https://github.com/nikapps/bazaar-api-laravel
https://github.com/nikapps/bazaar-api-php
https://github.com/nikapps/bazaar-push
https://github.com/nikhilbansal97/samplemvp
https://github.com/nikhilbhutani/android-snippets
https://github.com/nikhilmenghani/android-flashable-zip-creator
https://github.com/nikkyai/pluginmanagementtutorial
https://github.com/nikoladespotoski/drawerlayoutedgetoggle
https://github.com/nikwen/dynamicshareactionprovider
https://github.com/niniloveyou/statebutton
https://github.com/nispok/imgurdroid
https://github.com/nisrulz/android-examples
https://github.com/nisrulz/android-tips-tricks
https://github.com/nisrulz/app-privacy-policy-generator
https://github.com/nlgtuankiet/mvrxpaged
https://github.com/nolanlawson/popupdemo
https://github.com/nomanr/singledateandtimepicker
https://github.com/nomtek/nomtekutills
https://github.com/norkunas/onesignal-php-api
https://github.com/novoda/android-demos
https://github.com/nytimes/store
https://github.com/ogrebgr/android_volley_examples
https://github.com/okbuilds/buckjava8retrolambdademo
https://github.com/oky2abbas/reactor
https://github.com/oleksandrkucherenko/android-lifecycle
https://github.com/omar753sahl/flopsy
https://github.com/ongakuer/viewpagerheaderscrolldemo
https://github.com/onivas/menuanimation
https://github.com/onlynight/lsearchview
https://github.com/onyxbits/raccoon4
https://github.com/openproject/androiddigest
https://github.com/openxu/oxchart
https://github.com/opersys/process-explorer-app
https://github.com/ophilbert/activitytransition
https://github.com/ostamustafa/sprint
https://github.com/oubowu/slideback
https://github.com/ouchadam/themr
https://github.com/owncloud/notes
https://github.com/pandoramedia/bottomnavigator
https://github.com/pankajchunchun/volleytest
https://github.com/panwrona/workcation
https://github.com/paperairplane-dev-team/gigaget
https://github.com/pardom/androidcustomviews
https://github.com/pareshmayani/intro-to-rxjava
https://github.com/patloew/countries
https://github.com/paulinasadowska/rxworkmanagerobservers
https://github.com/paulocns/kdb
https://github.com/paveldudka/androidrippledemo
https://github.com/paveldudka/viewstatesavedemo
https://github.com/pavelpoley/advancedrecycleview
https://github.com/pavlospt/litho-lint-rules
https://github.com/pcqpcq/open-source-android-apps
https://github.com/pedja1/kernel-tuner
https://github.com/pedromassango/ibackdrop
https://github.com/pedrovgs/algorithms
https://github.com/pedrovgs/kuronometer
https://github.com/persiancal/jcal
https://github.com/pesarkhobeee/iran-states-and-cities-json-and-sql-including-area-coordinations
https://github.com/petrnohejl/android-stocks
https://github.com/phelat/dvdlivewallpaper
https://github.com/phelat/livedatadsl
https://github.com/phelat/navigationresult
https://github.com/pheynix/timerview
https://github.com/philio/pinentryview
https://github.com/philippeboisney/archapp
https://github.com/philippeboisney/nobullshit
https://github.com/piasy/double-tf-android
https://github.com/pili-engineering/pldroidplayer
https://github.com/pinchbv/android-analyzer
https://github.com/pinterest/ktlint
https://github.com/pixplicity/htmlcompat
https://github.com/pkumza/libradar
https://github.com/plnice/can-i-drop-jetifier
https://github.com/pluscubed/matlog
https://github.com/pocmo/android-network-intents
https://github.com/polidea/cockpit
https://github.com/pradyuman7/pager
https://github.com/pranaypatel512/androidlivetemplates
https://github.com/pratikbutani/androiddesignlibrarydemo
https://github.com/procrastimax/birthdaybuddy
https://github.com/prototypez/appjoint
https://github.com/prototypez/savestate
https://github.com/psaravan/filebrowserview
https://github.com/psaravan/flexiimageview
https://github.com/pshegger/recycleradapter-generator
https://github.com/punksta/volume_control_android
https://github.com/purposebakery/wearfaceutils
https://github.com/pwnall/chromeview
https://github.com/qixingchen/md-bilibili
https://github.com/qluan/android-guide-overlay
https://github.com/qstumn/badgeview
https://github.com/quickpermissions/quickpermissions-kotlin
https://github.com/quiph/recyclerview-fastscroller
https://github.com/quran/quran_android
https://github.com/race604/aidlservice-sample
https://github.com/radoslavyankov/kotlin-extensions
https://github.com/radoslavyankov/valigator
https://github.com/rahulrj/chromeoverflowmenu
https://github.com/raizlabs/androiddatabaselibrarycomparison
https://github.com/raizlabs/androidwebservicemanager
https://github.com/raizlabs/rzandroidbaseutils
https://github.com/rajat028/notificationbell
https://github.com/rakshakhegde/daggerandroidinjector
https://github.com/ramotion/android-ui-animation-components-and-libraries
https://github.com/ramotion/cardslider-android
https://github.com/ramotion/direct-select-android
https://github.com/ramotion/garland-view-android
https://github.com/ramotion/showroom-android
https://github.com/ravidsrk/generator-android-architecture
https://github.com/ravidsrk/generator-android-boilerplate
https://github.com/ravidsrk/generator-android-mvp-starter
https://github.com/raviyadav5951/kotlinktxapplication
https://github.com/razeghi71/jalalicalendar
https://github.com/razir/progressbutton
https://github.com/rdoeffinger/dictionary
https://github.com/rdrobinson3/welcometol
https://github.com/reddit/indicatorfastscroll
https://github.com/redinput/notification-blocker
https://github.com/redmadrobot/flipper
https://github.com/redmadrobot/state-delegator
https://github.com/reisub/android_uioptimizationexample
https://github.com/rejasupotaro/materialdesignsample
https://github.com/remychantenay/firebucket
https://github.com/renard314/listview3d
https://github.com/renfeng/android-repository
https://github.com/rethought/swipecardentry
https://github.com/rewe-digital/katana
https://github.com/rey5137/slidelayout
https://github.com/reyanshmishra/rey-musicplayer
https://github.com/rezaiyan/moviz
https://github.com/rharter/android-gesture-detectors
https://github.com/rharter/android-gesture-sample
https://github.com/ribot/android-guidelines
https://github.com/richk/courserademoapp
https://github.com/riyagayasen/android_accordion_view
https://github.com/rizasif/android-ble-sample
https://github.com/rizasif/interactiveinfowindowandroid
https://github.com/ro31337/libretaxi
https://github.com/robinhood/spark
https://github.com/rock3r/deep-clean
https://github.com/rohanraarora/material-design-color-palette
https://github.com/romainguy/filthy-rich-clients
https://github.com/romannurik/androidassetstudio
https://github.com/romannurik/androidiconanimator
https://github.com/romannurik/muzei
https://github.com/romannurik/slidescodehighlighter
https://github.com/romantruba/androidtouchgallery
https://github.com/ronak-lm/book-worm
https://github.com/ronak-lm/memoir
https://github.com/ronak-lm/watchlist
https://github.com/rongi/async-task
https://github.com/rongi/klaster
https://github.com/rontho/android-quick-setup
https://github.com/roojin/persian-calendar-view
https://github.com/rooyekhat-media/igap-android
https://github.com/rosenpin/custom-analog-clock-view
https://github.com/rtyley/spongycastle
https://github.com/ruben-h/android-listdialogexample
https://github.com/rudsonlive/navigation-drawer-actionbarcompat
https://github.com/ruscoe/space-trivia
https://github.com/russhwolf/multiplatform-settings
https://github.com/rvhamed/scaling-recyclerview
https://github.com/rybalkinsd/kohttp
https://github.com/saadfarooq/khoji
https://github.com/sababado/androidapkrename
https://github.com/sadathanwar17/sheduler