forked from androiddevnotes/awesome-android-kotlin-apps
-
Notifications
You must be signed in to change notification settings - Fork 4
/
README.md
941 lines (410 loc) · 39.3 KB
/
README.md
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
<h1 align="center">Awesome Android Kotlin Apps</h1></br>
<p align="center">
:eyeglasses: A curated list of awesome android kotlin apps by open-source contributors.
</p>
<br>
<p align="center">
<a href="#"><img alt="Awesome Android Kotlin Apps Count badge" src="https://badgen.net/badge/Apps/110?icon=https://raw.githubusercontent.com/androiddevnotes/awesome-android-kotlin-apps/master/assets/count.svg&color=0984e3"/></a>
<a href="#"><img alt="Android Language Badge" src="https://badgen.net/badge/OS/Android?icon=https://raw.githubusercontent.com/androiddevnotes/awesome-android-kotlin-apps/master/assets/android.svg&color=3ddc84"/></a>
<a href="#"><img alt="Kotlin Language Badge" src="https://badgen.net/badge/language/Kotlin?icon=https://raw.githubusercontent.com/androiddevnotes/awesome-android-kotlin-apps/master/assets/kotlin.svg&color=f18e33"/></a>
<a href="https://github.com/androiddevnotes"><img alt="androiddevnotes GitHub badge" src="https://badgen.net/badge/GitHub/androiddevnotes?icon=github&color=24292e"/></a>
</p>
<br>
<p align="center">
<img width="320px" src="assets/androiddevnotes.png" alt="androiddevnotes logo"></img>
</p><br>
**Awesome Android Kotlin Apps** aims to be the starting point for developers to find an Android app with a particular Tech Stack / Libraries.
## Contents
:art: [**Pattern**](https://github.com/androiddevnotes/awesome-android-kotlin-apps#art-pattern)
- [Jetpack Compose Apps](https://github.com/androiddevnotes/awesome-android-kotlin-apps#jetpack-compose-apps)
- [Model View ViewModel (MVVM)](https://github.com/androiddevnotes/awesome-android-kotlin-apps#mvvm)
- [Normal](https://github.com/androiddevnotes/awesome-android-kotlin-apps#normal)
- [Clean Architecture](https://github.com/androiddevnotes/awesome-android-kotlin-apps#clean-architecture)
- [Model View Intent (MVI)](https://github.com/androiddevnotes/awesome-android-kotlin-apps#mvi)
- [Normal](https://github.com/androiddevnotes/awesome-android-kotlin-apps#normal-1)
- [Clean Architecture](https://github.com/androiddevnotes/awesome-android-kotlin-apps#clean-architecture-1)
- [Model View Presenter (MVP)](https://github.com/androiddevnotes/awesome-android-kotlin-apps#mvp)
- [Model View Controller (MVC) and Other Patterns](https://github.com/androiddevnotes/awesome-android-kotlin-apps#other)
:books: [**Tech Stack/Libraries**](https://github.com/androiddevnotes/awesome-android-kotlin-apps#books-tech-stacklibraries)
:memo: [**Contributing**](https://github.com/androiddevnotes/awesome-android-kotlin-apps#memo-contributing)
## :art: Pattern
### Jetpack Compose Apps
- https://github.com/androiddevnotes/awesome-jetpack-compose-android-apps
- **A curated list of awesome Jetpack Compose android apps by open-source contributors.**
- Awesome Jetpack Compose Android Apps aims to be the starting point for developers to find an Android app with a Jetpack Compose suite of libraries.
### MVVM
#### Normal
- https://github.com/PatilShreyas/NotyKT
- 📒 NotyKT is a complete 💎Kotlin-stack (Backend + Android) 📱 application built to demonstrate the use of Modern development tools with best practices implementation.
- Tech Stack = Backend - Ktor, PostgreSQL; Android = Coroutines, Flow, Navigation Architecture, MVVM, LiveData, ViewModel, Room DB, DataStore, Jetpack Security, WorkManager, Dagger Hilt DI, Jetpack Compose, Material UI, Retrofit, Moshi
- https://github.com/Sharkaboi/DrawingsApp
- An app to add and manage floor plan drawings with markers.
- Tech Stack = Dagger Hilt, Coroutines, Room, Dhaval2404/ImagePicker, Subsampling Scale Image View, Navigation, LiveData, ViewModel
- https://github.com/b-lam/Resplash
- Unofficial Unsplash Android App
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, Firestore, Firebase In-App Messaging, Paging, Navigation, Google Play Billing, Muzei, LiveData, ViewModel
- https://github.com/utsmannn/hiya-hiya-hiya
- Whatsapp Clone base on Firebase Cloud Messaging
- Tech Stack = Koin, Coroutines, Retrofit, Room, Firebase Messaging, Firebase Auth, WorkManager, Google Maps, Paging, JSoup, vanniktech/Emoji, afollestad/inline-activity-result, LiveData, ViewModel
- https://github.com/ashwini009/TvFlix
- TVFlix connects with TVDB API to give you popular shows and let you mark anyone as favorite.
- Tech Stack = Dagger Hilt, Coroutines, Testing, Retrofit, Room, Paging, Navigation, LiveData, ViewModel
- https://github.com/fevziomurtekin/DeezerClone
- Deezer Clone application. Fetching data from the network and integrating local data in the database via repository pattern.
- Tech Stack = Dagger Hilt, Coroutines, Flow, Jetpack (Room, ViewModel,Navigation LiveData), Retrofit, Paging, Testing
- https://github.com/vidit135g/Replify-Messenger [Kotlin + Java]
- Minimal text messenger with a ton of features.
- Tech Stack = Dagger, Coroutines, RxJava, Testing, Realm, ExoPlayer, Conductor, Mixpanel Android, libphonenumber-android, Call Control DataShare, LiveData, ViewModel
- https://github.com/jnkforks/PokemonGo
- Jetpack 实战项目 PokemonGo(神奇宝贝)基于 MVVM 架构和 Repository 设计模式
- Tech Stack = Dagger Hilt, Koin, Coroutines, RxJava, Testing, Retrofit, Room, WorkManager, Paging, LiveData, ViewModel
- https://github.com/andyb129/AppDevToolbox
- Collection of tools for Android app development in one place 🔧 🔨
- Dagger, Coroutines, RxJava, Room, Venom, LiveData, ViewModel
- https://github.com/nahzur-h/awaker
- article app for android
- Tech Stack = RxJava, Testing, Retrofit, Room, ExoPlayer, LiveData, ViewModel
- https://github.com/theapache64/topcorn
- A minimalistic movie listing app to browse IMDB's top 250 movies.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, LiveData, ViewModel
- https://github.com/vmiklos/plees-tracker
- Plees Tracker is a simple sleep tracker for your Android phone.
- Tech Stack = Room, LiveData, ViewModel
- https://github.com/Chesire/Nekome
- Android application to manage tracked Anime and Manga lists.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, WorkManager, Navigation, LiveData, ViewModel
- https://github.com/ardakazanci/Heyyoo
- Heyyoo is a sample social media Android application 📱 built to demonstrate use of Modern Android development tools.
- Tech Stack = Coroutines, Retrofit, Room, Algolia, LocGetter, EasyValidation, Dexter, Splashy, secure-preferences, Paging, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/lulululbj/wanandroid/
- Jetpack MVVM For Wanandroid 最佳实践 !
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Navigation, FlowLayout, LiveData, ViewModel
- https://github.com/SIKV/Photos
- Browse, search, download, and share amazing free photos provided by talented photographers on Unsplash and Pexels.
- Tech Stack = Dagger, Coroutines, RxJava, Testing, Retrofit, Room, Firestore, Firebase-ML, Firebase-Analytics, Paging, Navigation, LiveData, ViewModel
- https://github.com/ValterKasper/space-app
- An android app that shows time-line of upcoming rocket launches.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, WorkManager, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/nominalista/expenses
- App written in Kotlin for budget tracking.
- Tech Stack = Dagger, Coroutines, RxJava, Testing, Retrofit, Room, Firestore, Firebase Auth, Firebase Messaging, WorkManager, Navigation, LiveData, ViewModel
- https://github.com/lmj0011/jetpack-release-tracker
- Stay up to date on the latest AndroidX library releases.
- Tech Stack = Coroutines, Testing, Fuel, Room, WorkManager, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/willowtreeapps/vocable-android
- Vocable AAC allows those with conditions such as MS, stroke, ALS, or spinal cord injuries to communicate using an app that tracks head movements, without the need to spend tens of thousands of dollars on technology to do so.
- Tech Stack = Koin, Coroutines, Testing, Room, Data Binding, AR, LiveData, ViewModel
- https://github.com/Shashank02051997/GitExplorer-Android
- Find the right git commands 🔥 without digging through the web.😊😊😉
- Tech Stack = Kotlin, LiveData, ViewModel
- https://github.com/VIPyinzhiwei/Eyepetizer
- 🔥基于 Kotlin 语言仿写「开眼 Eyepetizer」的一个短视频 Android 客户端项目,采用 Jetpack + 协程实现的 MVVM 架构。
- Tech Stack = Coroutines, Testing, Retrofit, WorkManager, GSYVideoPlayer, Data Binding, PermissionX, EventBus, LiveData, ViewModel
- https://github.com/PatilShreyas/Foodium
- 🍲Foodium is a sample food blog Android application 📱
- Tech Stack = Dagger Hilt, Coroutines, Testing, Retrofit, Room, LiveData, ViewModel
- https://github.com/michaldrabik/Showly-2.0
- Showly 2.0 is modern, slick, open-sourced and completely free Android TV Shows Tracker.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, Firebase Messaging, WorkManager, Navigation, Dynamicanimation, LiveData, ViewModel
- https://github.com/bernaferrari/ChangeDetection
- Automatically track websites changes on Android in background.
- Tech Stack = Dagger, Coroutines, RxJava, Retrofit, Room, Firestore, WorkManager, Paging, Data Binding, Navigation, JSoup, js-evaluator-for-android, LiveData, ViewModel
- https://github.com/YahiaAngelo/Noted-Android
- Notes and Tasks app where you can add notes and tasks with Reminders also with categories.
- Tech Stack = Koin dependency injection, Coroutines, Realm db, Material Components, Markdown, Navigation, LiveData, ViewModel
- https://github.com/igorescodro/alkaa
- A simple to-do app created to study the latest components, architecture, tools, and APIs released in Android Platform. The project evolved a lot in the last year and now is available on Google Play! :heart:
- Tech Stack = Koin, Espresso, UiAutomator, Mockk, Coroutines, Navigation, Room, MotionLayout, KTX, Modularization, Dynamic Delivery, Dark Theme, klint, Detekt, codebeat, CodeFactor, Codacy, MPAndroidChart, Groupie, LiveData, ViewModel
- https://github.com/HariKulhari06/Covid-19-Tracker
- A Sample to track COVID-19 cases in India and globally.
- Tech Stack = Dagger Hilt, Coroutines, Retrofit, Room, Firestore, WorkManager, Navigation, MPAndroidChart, LiveData, ViewModel
- https://github.com/zedlabs/WallPortal
- Minimal Wallpapers for Android. The goal of this project is to create a responsive application and with optimized networking, a good place to see implementation. moved to wallhaven.cc api from unsplashed api due to rate limits.
- Tech Stack = Dagger Hilt, Coroutines, Retrofit, Room, Paging, Navigation, LiveData, ViewModel
- https://github.com/ricknout/rugby-ranker
- An Android app for viewing and predicting the latest World Rugby rankings 🏉
- Tech Stack = Dagger Hilt, Coroutines, Testing, Retrofit, Room, WorkManager, Navigation, insetter, LiveData, ViewModel
- https://github.com/GeorgCantor/WallpaperApp
- **WallpaperApp** App for viewing and downloading wallpapers.
- Tech Stack = Koin, Coroutines, Retrofit, Room, Lottie, Zoomy, Navigation, LiveData, ViewModel
- https://github.com/DheerajKotwani/GithubVisualizer
- **Github Visualizer** Android Application to track any user activity on Github built using the Github Developers Api. Implementation for almost all methods Github Developers Api.🔥🔥
- Tech Stack = Retrofit, Firebase Auth, Coroutines, LiveData, ViewModel
- https://github.com/PHELAT/Tedu
- **📝 Tedu** Todo app, but minimal, open-source and free. It lets you to sync your todos on your cloud provider. This project is architected in a modular structure and you can learn a lot from it.
- Tech Stack = Dagger, Room, Coroutines, Firebase Messaging, Navigation, LiveData, ViewModel
- https://github.com/abhinav0612/PasswordVault
- **:lock: Password Vault** is an all in one offline password storing application where you can also store debit/credit cards and bank details with one :key: Master PIN.
- Tech Stack = Dagger Hilt, Room, Navigation, LiveData, ViewModel
- https://github.com/TheCodeMonks/NYTimes-App
- **🗽 NY Times App** is an Minimal News 🗞 Android application built to describe the use of JSoup with Modern Android development tools.
- Tech Stack = Coroutines, Room, JSoup, Navigation, LiveData, ViewModel
- https://github.com/satyamurti/LetsChat
- **An opensource Indian chat app** with new cool concepts.
- Tech Stack = Coroutines, Retrofit, Firestore, Firebase Auth, Firebase Messaging, Firebase Storage, Cloud Functions, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/mayokunthefirst/Instant-Weather
- Instant Weather fetches data from the OpenWeatherMap API.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, WorkManager, Paging, Data Binding, Navigation, Algolia Search, LiveData, ViewModel
- https://github.com/qingmei2/MVVM-Architecture
- The practice of MVVM + Jetpack architecture in Android.
- Tech Stack = Dagger Hilt, Coroutines, RxJava, Testing, Retrofit, Room, Paging, Navigation, LiveData, ViewModel
- https://github.com/nuhkoca/libbra
- A currency tracker app demonstration.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/adityam49/Updoot
- A reddit client built for android
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, WorkManager, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/weylar/Movie
- A simple movie app
- Tech Stack = Dagger, Coroutines, Retrofit, Room, WorkManager, Paging, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/xiaoyanger0825/wanandroid
- Kotlin+JetPack+协程实现的MVVM架构Wanandroid客户端
- Tech Stack = Coroutines, Retrofit, Room, LiveData, ViewModel
- https://github.com/gs-ts/TrackMyPath
- An android app that tracks your walk with images every 100 meters.
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, LiveData, ViewModel
- https://github.com/KumarManas04/NotesSync
- It can encrypt and sync notes to the user's own Google Drive or Dropbox accounts.
- Tech Stack = Coroutines, Testing, Room, Google Drive, Dropbox, WorkManager, Navigation, LiveData, ViewModel
- https://github.com/CalvinNor/MovieMan/
- An open-source Android app for viewing Movies / TV information.
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, Navigation, LiveData, ViewModel
- https://github.com/commonpepper/Photosen
- Android app for viewing and downloading Flickr photos.
- Tech Stack = Retrofit, Room, Paging, LiveData, ViewModel
- https://github.com/OMIsie11/SpaceXFollower
- Android app that helps You keep up with SpaceX 🚀
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, WorkManager, MPAndroidChart, Navigation, LiveData, ViewModel
- https://github.com/dievskiy/feedapp
- Calorie tracker for android that supports recipes and products search.
- Tech Stack = Dagger, Coroutines, RxJava, Testing, Retrofit, Room, Firestore, Firebase Auth, Facebook Login, WorkManager, MPAndroidChart, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/phicdy/MyCuration
- RSS Reader for Android with article filtering and curation.
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Jsoup, WorkManager, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/droidconKE/droidconKE2020App
- Android app fully written in Kotlin for droidconKE2020
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, Google Auth, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/fossasia/open-event-attendee-android
- Open Event Attendee Android General App
- Tech Stack = Koin, RxJava, Testing, Retrofit, Room, Stripe, PayPal, Mapbox, Paging, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/dangquanuet/The-Movie-DB-Kotlin
- The Movie DB app using Kotlin with updated Android features.
- Tech Stack = Koin, Coroutines, RxJava, Testing, Retrofit, Room, Paging, Data Binding, Easy Permissions, Navigation, LiveData, ViewModel
- https://github.com/CharlieChristensen/Cryptotracker
- Displays live prices of many types of cryptocoins as well as create a wallet to track total portfolio value.
- Tech Stack = Dagger, Coroutines, Testing, socketIO, Retrofit, Room, MPAndroidChart, Navigation, LiveData, ViewModel
- https://github.com/haroldadmin/MoonShot
- A SpaceX companion app for Android
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, WorkManager, Navigation, LiveData, ViewModel
- https://github.com/ganainy/Our_chat
- Private chat app with realtime notification and support audio messages, image sharing, file sharing.
- Tech Stack = Coroutines, Retrofit, Room, Firestore, Firebase Auth, Firebase Messaging, Facebook Login, WorkManager, Dexter, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/flexbooru/flexbooru
- A booru client for Android, support Danbooru, Moebooru, Gelbooru, Sankaku, etc
- Tech Stack = Kodein, Coroutines, Testing, Retrofit, Room, WorkManager, Exoplayer, Navigation, Tikxml, LiveData, ViewModel
- https://github.com/flexbooru/flexbooru-ap
- An anime-pictures.net client for Android.
- Tech Stack = Kodein, Coroutines, Retrofit, Room, WorkManager, Navigation, Markwon, LiveData, ViewModel
- https://github.com/gs-ts/BitfinexClient
- An android app that showing the details of the BTC/USD currency pair, at real-time.
- Tech Stack = Koin, RxJava, Testing, Scarlet, Room, Data Binding, LiveData, ViewModel
- https://github.com/SoftwareEngineeringDaily/software-engineering-daily-android
- Android client for Software Engineering Daily
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, WorkManager, Exoplayer, Navigation, Android-Permissions, LiveData, ViewModel
- https://github.com/GreyLabsDev/PexWalls
- Wallpaper app based on pexels.com API.
- Tech Stack = Koin, Coroutines, RxJava, Retrofit, Room, Navigation, Markwon, LiveData, ViewModel
- https://github.com/iammert/AppLocker
- 🔐 Open source app locker, vault, call blocker application
- Tech Stack = Dagger, RxJava, Room, WorkManager, Data Binding, RxPermissions, LiveData, ViewModel
- https://github.com/xiprox/Upgur
- An offline-first Imgur client app that lets you view your albums and photos and upload new ones even if you are offline.
- Tech Stack = Dagger, Retrofit, Room, WorkManager, Navigation, android-upload-service, LiveData, ViewModel
- https://github.com/AbduallahAtta/Social-Note
- Social Note - Note-taking, sharing, time & location reminder
- Tech Stack = Koin, RxJava, Room, Firestore, Firebase Auth, Firebase Storage, Firebase Messaging, WorkManager, Data Binding, Paging, LiveData, ViewModel
- https://github.com/kacperczyk-dev/ExchangeRateApp
- Exchange Rates application
- Tech Stack = Dagger, Coroutines, Retrofit, Room, WorkManager, Data Binding, MPAndroidChart, Navigation, LiveData, ViewModel
- https://github.com/cuongpm/youtube-dl-android
- 📦📦Video downloader for Android - Download videos from Youtube, Facebook, Twitter, Instagram, Dailymotion, Vimeo and more than 1000 other sites
- Tech Stack = Dagger, RxJava, Testing, Retrofit, Room, Data Binding, LiveData, ViewModel
- https://github.com/PhilippeBoisney/ArchApp
- Simple Android app to show how to design a multi-modules MVVM Android app (fully tested)
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/rumaan/file.io-Android-Client
- ☁️ Unofficial file.io Android App 📱
- Tech Stack = Testing, Fuel, Room, WorkManager, Navigation, PermissionsDispatcher, LiveData, ViewModel
- https://github.com/skydoves/Pokedex
- 🗡️ Android Pokedex using Dagger Hilt, Motion, Coroutines, Jetpack (Room, ViewModel, LiveData) based on MVVM architecture.
- Tech Stack = Dagger Hilt, Coroutines, Testing, Retrofit, Room, Data Binding, LiveData, ViewModel
- https://github.com/Wiqaytna-app/wiqaytna_android
- Wiqaytna is the official Moroccan exposure notification app. (Covid19)
- Tech Stack = RxJava, Testing, Room, Firebase Storage, Firebase Auth, Firebase Messaging, Firebase Perf, Firebase Functions, Navigation, LiveData, ViewModel
- https://github.com/ZahraHeydari/MusicPlayer
- A Simple Audio Player to play (online/offline) songs by running a service in the background and displaying a notification at top of the screen.
- Tech Stack = Koin, Testing, Room, Firebase Storage, Firebase Auth, Firebase Messaging, Firebase Perf, Firebase Functions, Navigation, LiveData, ViewModel
- https://github.com/google/iosched
- The Google I/O 2019 Android App
- Tech Stack = Dagger Hilt, Coroutines, Testing, Room, Firestore, Firebase Auth, Firebase Messaging, Firebase Functions, Navigation, ARCore, LiveData, ViewModel
- https://github.com/romannurik/muzei
- Muzei Live Wallpaper for Android
- Tech Stack = Coroutines, Testing, Retrofit, Room, Firebase Perf, WorkManager, Paging, Navigation, LiveData, ViewModel
- https://github.com/mozilla-mobile/fenix
- Firefox Preview
- Tech Stack = Coroutines, Testing, Retrofit, Room, Firebase Perf, WorkManager, Paging, Navigation, LiveData, ViewModel
- https://github.com/rumboalla/apkupdater
- APKUpdater is an open source tool that simplifies the process of finding updates for your installed apps.
- Tech Stack = Koin, JSoup, Navigation, LiveData, ViewModel
- https://github.com/VMadalin/android-modular-architecture
- 📚 Sample Android Components Architecture on a modular word focused on the scalability, testability and maintainability written in Kotlin, following best practices using Jetpack.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, Navigation, Paging, Data Binding, LiveData, ViewModel
- https://github.com/moezbhatti/qksms
- The most beautiful SMS messenger for Android
- Tech Stack = Dagger, Coroutines, RxJava, Testing, Retrofit, Realm, ExoPlayer, Conductor, Data Binding, ShortcutBadger, LiveData, ViewModel
- https://github.com/ApturiCOVID/apturicovid-android
- Apturi Covid Android lietotne
- Tech Stack = Dagger, Coroutines, RxJava, Testing, Retrofit, Room, WorkManager, Data Binding, ShortcutBadger, LiveData, ViewModel
- https://github.com/idisfkj/AwesomeGithub
- Android Github客户端,基于组件化开发,支持账户密码与认证登陆。使用Kotlin语言进行开发,项目架构是基于JetPack&DataBinding的MVVM;同时支持组件开发,使用Arouter进行组件间的跳转;网络框架使用了Retrofit&Coroutine。项目持续更新中,为了防止走失,请做好start准备!😊😊
- Tech Stack = Coroutines, RxJava, Retrofit, Room, WorkManager, Paging, Navigation, Data Binding, ARouter, LiveData, ViewModel
- https://github.com/HabitRPG/habitica-android
- Native Android app for Habitica
- Tech Stack = Dagger, Coroutines, RxJava, Retrofit, Realm, Firebase Messaging, Paging, Navigation, Facebook, FlowLayout, LiveData, ViewModel
- https://github.com/KhaledSherifSayed/PopularPeople
- Popular People is a sample Android application 📱 showing stars of the world 👓 built to demonstrate use of Modern Android development tools. Dedicated to all Android Developers with ❤️.
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Data Binding, Sandwich, LiveData, ViewModel
- https://github.com/alisonthemonster/Presently
- Android app for recording gratitude journal entries.
- Tech Stack = Dagger, Coroutines, RxJava, Testing, Room, Firebase Messaging, WorkManager, Dropbox, Calendar view, Paging, Biometric, LiveData, ViewModel
- https://github.com/fibelatti/raffler-kotlin
- Raffler is a simple raffling app which intends to make decision making easier
- Tech Stack = Dagger, Coroutines, Testing, Room, LiveData, ViewModel
- https://github.com/sanmiAde/Yet_Another_Anime_List
- Yet Another Anime List is an app that allows you to view upcoming and trending animes on MAL. It also allows you to favourite animes.
- Tech Stack = Dagger, RxJava, Testing using Fakes, MockWebserver, RxRetrofit, Room, Navigation Components, Lottie, LiveData, ViewModel
- https://github.com/OMIsie11/CovidNow
- Simple application for tracking Covid-19 info. Stay safe.😷
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, MPAndroidChart, LiveData, ViewModel
- https://github.com/KevinGitonga/TukoNewsClient
- A simple and sleek Android client consuming the Tuko News Api.. Data is fetched from the official tuko.co.ke news API.
- Tech Stack = Coroutines, Retrofit, Room, LiveData, ViewModel
- https://github.com/KevinGitonga/NewsFeed
- A localized News reader Android app powered by newsapi.org. Will Automatically localize your news based on your location if its supported by API.
- Tech Stack = Coroutines, Retrofit, Room, Pretty Time, LiveData, ViewModel
- https://github.com/auron567/Gallerit
- A sample Android gallery to search images posted on Reddit built using modern Android development tools.
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, Navigation, Data Binding, LiveData, ViewModel
- https://github.com/enginebai/MovieHunt
- 🍿Movie Android App written in Kotlin, MVVM, RxJava, Android Architecture Components. It showcases the app development with well-designed architecture and up-to-date Android tech stacks.
- Tech Stack = Koin, RxJava, Room, Paging, Navigation, Epoxy, LiveData, ViewModel
- https://github.com/Shivamdhuria/flows_guide
- An Android app with Offline first approach, powered by dog.ceo. Build with amazing transition and animations, following material design principles and modern tech stack.
- Tech Stack = Dagger Hilt, Coroutines, Flows, Retrofit, Room, Material Design Components, Navigation, LiveData, ViewModel
- https://github.com/rizmaulana/kotlin-mvvm-covid19
- 🦠 Simple COVID19 data monitoring worldwide with interactive chart and map
- Tech Stack = MVVM, Live Data, Koin, RxJava, RxBinding, Offline first with simple caching, Spek2Framwework for Unit Testing, etc
- https://github.com/Tristankluivert/Knote
- Knote app is a simple yet standard note taking app with features like image addition, ocr, text to speech and more
- Tech Stack = ViewModel, Live Data, Koin, Room db, Coroutines etc
- https://github.com/Devansh-Maurya/PukaPuka
- An Android app to identify books from their covers and give info, built using ML Kit's Text Recognition API, Android Jetpack Libraries and Google Books API
- Tech Stack = MVVM, Kotlin, LiveData, ViewModel, Navigation Components, CameraKit, Firebase ML Kit Text Recognition API, Glide, Volley, Lottie
- https://github.com/fionicholas/Football-App
- Football App is an application to show Football Match, List Football Team, and Standing in Leagues from TheSportsDB API
- Tech Stack = MVVM, Kotlin, LiveData, ViewModel, Retrofit, Room, Koin, RxJava, etc
- https://github.com/ryanrvldo/MovieCatalogue
- Movie catalogue is android application that using some architecture components stuff and fetch API from TMDB. This application can show some movie and tv show that available in TMDB API. Also user can search some related stuff here.
- Tech Stack = MVVM, ViewModel, LiveData, Coroutines, Firebase Cloud Messaging, Retrofit, Room, Glide, Dagger Hilt, and Google Material.
- https://github.com/mutualmobile/Praxis
- Sample app written in Kotlin which fetches random jokes and displays it.
- Tech Stack = MVVM architecture, Dagger, Retrofit, Kotlin Coroutines, RXJava2, ViewModel, Data Binding
- https://github.com/MindorksOpenSource/MVVM-Architecture-Android-Beginners
- Sample app that implements MVVM architecture using Kotlin.
- Tech Stack = MVVM architecture, Dagger, Kotlin Coroutines, RXJava2, ViewModel, Data Binding, Live Data.
- https://github.com/mrcsxsiq/Kotlin-Pokedex
- Sample app that implements MVVM architecture using Kotlin.
- Tech Stack = MVVM, Kotlin, LiveData, Navigation Jetpack, ViewModel, Room, Gradle Kotlin DSL, Databinding, Retrofit, Koin and Ktlint
#### Clean Architecture
- https://github.com/happysingh23828/Android-Clean-Architecture
- This is a sample movie list Android application 📱 built to demonstrate use of [**Clean Architecture**](https://github.com/happysingh23828/Android-Clean-Architecture#what-is-clean-architecture) tools with [**80% code coverage**](https://github.com/happysingh23828/Android-Clean-Architecture#--code-coverage-reports). Dedicated to all Android Developers with ❤️.
- Tech Stack = Dagger, Unit Testing for modules, Mockito, RxJava, Retrofit, Room, CI-CD, SOLID, Code Coverage, Jacoco, Detekt, ktlint, Stetho, LiveData, ViewModel
- https://github.com/igorwojda/android-showcase
- 💎 Android application following best practices: Kotlin, coroutines, Clean Architecture, feature modules, tests, MVVM, static analysis...
- Tech Stack = Kodein, Coroutines, Testing, Retrofit, KAndroid, Lottie, Detekt, Navigation, Dynamic Feature Modules, LiveData, ViewModel
- https://github.com/ferPrieto/Coroutines-Flows-Modularised
- Clean Architecture Modular Project.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/akoufa/CoolWeather
- Weather App that uses Android best practices. Android Jetpack, clean architecture. Written in Kotlin
- Tech Stack = Dagger Hilt, Coroutines, Testing, Retrofit, Room, Navigation, LiveData, ViewModel
- https://github.com/odaridavid/Clean-MVVM-ArchComponents
- A Star Wars API app that lets you search for characters, view details about them and save your favorite
characters.
- Tech Stack = Koin, Coroutines, Testing, Retrofit, Room, Data Binding, Motion Layout, LiveData, ViewModel
- https://github.com/andremion/Theatre
- Pet project using Clean Architecture + MVVM + Reactive Extensions + Android Architecture Components. The data are fetched from LondonTheatreDirect API. performing_arts
- Tech Stack = Dagger, RxJava, Testing, Retrofit, Room, Navigation, Data Binding, LiveData, ViewModel
- https://github.com/HamdiBoumaiza/CoronavirusWorldStatus
- An Android App that shows the stats of coronavirus worldwide and per country .
- Tech Stack = Dagger, Coroutines, Retrofit, Room, LiveData, ViewModel , Stetho
- https://github.com/SmartToolFactory/PropertyFindAR
- 🏘 Real Estate App with many screens written with RxJava3+Flow with offline first/last using dynamic feature modules, and TDD, used ConcatAdapter to have RV with different layouts.
- Tech Stack = RxJava3, Coroutines Flow, Retrofit, Room, Dagger Hilt, Dynamic Feature Modules, ConcatAdapter, LiveData, ViewModel, SavedStateHandle, WorkManager, Glide, Lottie, MpCharts, MockWebServer, MockK, FlowTestObserver, ktLint, detekt, Git Hooks, Git Flow
- https://github.com/sansets/android-clean-architecture
- Food recipe app that uses Modularization, Single Activity Architecture, and Clean Architecture.
- Tech Stack = Navigation Component, Dagger, Coroutines Flow, Room, Retrofit, LiveData, ViewModel, View Binding, Dynamic Feature Modules.
- https://github.com/VladimirWrites/BLTaxi
- 🚕 BL Taxi is a simple app for calling a taxi in the city Banja Luka built using modern Android development tools (Clean Architecture, Kotlin, Coroutines, MVVM, Testing)
- Tech Stack = Koin, Retrofit, Room, Data Binding, Live Data, View Model, Work Manager, Material Components
### MVI
#### Normal
- https://github.com/HadySalhab/NewsFeed-MVI-Dagger
- NewsFeed, provides live top and breaking headlines for a country, specific category in a country, single source, or multiple sources, by interacting to News API.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, WorkManager, Data Binding, Navigation, LiveData, ViewModel
- https://github.com/hoc081098/ComicReaderApp_MVI_Coroutine_RxKotlin_Jetpack
- ⚡️Comic reader app 📘. Learning MVVM / MVI with 🌀 RxKotlin, Retrofit, Kotlin Coroutine, Work Manager, Room, Firebase ... ❄️
- Tech Stack = Koin, Coroutines, RxJava, Retrofit, Room, Firestore, Firebase Auth, Firebase Storage, WorkManager, Navigation, Paging, LiveData, ViewModel
- https://github.com/R4md4c/GameDealz
- A non-official Android client for IsThereAnyDeal.com, it uses its API to retrieve/search for deals and compare prices.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, WorkManager, acra, fastAdapter, Paging, JSoup, dropbox/Store, LiveData, ViewModel
- https://github.com/mitchtabian/Open-API-Android-App
- Application that interacts with the website open-api.xyz.
- Tech Stack = Dagger, Coroutines, Retrofit, Room, Navigation, LiveData, ViewModel
#### Clean Architecture
- https://github.com/lopspower/CleanRxArchitecture
- Clean Rx Kotlin Architecture sample on GitHub Api 🚀
- Tech Stack = Dagger, RxJava, Retrofit, Room, Clean Architecture, LiveData, ViewModel
- https://github.com/mitchtabian/Clean-Notes
- Android example with Clean Architecture by layer.
- Tech Stack = Dagger, Coroutines, Testing, Retrofit, Room, Firestore, Firebase Auth, Navigation, Markdown Processor, LiveData, ViewModel
- https://github.com/Ezike/Baking-App-Kotlin
- Android MVI clean architecture sample that shows a list of recipes, their ingredients and hands-on videos for making them.
- Tech Stack = Dagger hilt, Kotlin Coroutines & StateFlow, Unit Testing, Retrofit, DFM Navigation, FlowBinding, Exoplayer
- https://github.com/Ezike/MVI_UIComponents
- Android project showcasing the use of View components for rendering UI.
- Tech Stack = Jetpack, Dagger hilt, Kotlin Coroutines & StateFlow, Room, Retrofit, FlowBinding
### MVP
- https://github.com/inorichi/tachiyomi
- Tachiyomi is a free and open source manga reader for Android 5.0 and above.
- Tech Stack = Inorichi injekt, Coroutines, RxJava, Testing, Retrofit, DiskLruCache, Jsoup, WorkManager, Duktape Android, Conductor
- https://github.com/ImangazalievM/UTair-MVP-Sample
- Android Clean Architecture + MVP Sample written in Kotlin
- Tech Stack = Clean Architecture, Coroutines, RxJava 2, Coroutines, Toothpick, Moxy, Unit-tests (Spek, Mockk), UI-tests (Kaspresso)
## Other
- https://github.com/shadowsocks/shadowsocks-android
- A shadowsocks client for Android
- Tech Stack = Testing, Room, Firebase Ads, WorkManager
- https://github.com/BijoySingh/Scarlet-Notes
- Simple yet powerful rich note taking android application, with a lot of flexibilty of usage
- Tech Stack = Dagger, Coroutines, Room, Firebase Auth, Firebase Database, Paging, Navigation, Evernote android-job, Facebook Litho, Facebook SoLoader, Biometric
## :books: Tech Stack/Libraries
- [Dagger](https://github.com/google/dagger), [Koin](https://github.com/InsertKoinIO/koin), [Kodein](https://github.com/Kodein-Framework/Kodein-DI), [Inorichi Injekt](https://jitpack.io/p/inorichi/injekt), [Coroutines](https://github.com/Kotlin/kotlinx.coroutines), [Rx](https://github.com/ReactiveX/RxJava), [Testing](https://developer.android.com/studio/test), [Retrofit](https://github.com/square/retrofit), [Fuel](https://github.com/kittinunf/fuel), [Room](https://developer.android.com/topic/libraries/architecture/room), [Realm](https://github.com/realm/realm-java), [Firebase Products](https://firebase.google.com/), [WorkManager](https://developer.android.com/topic/libraries/architecture/workmanager), [ExoPlayer](https://github.com/google/ExoPlayer), [Paging](https://developer.android.com/topic/libraries/architecture/paging), [Navigation](https://developer.android.com/guide/navigation), [Lottie](https://github.com/airbnb/lottie-android), [Zoomy](https://github.com/imablanco/Zoomy), [JSoup](https://jsoup.org/download), [js-evaluator-for-android](https://github.com/evgenyneu/js-evaluator-for-android), [Algolia Search](https://www.algolia.com/doc/guides/getting-started/quick-start/tutorials/quick-start-with-the-api-client/android/), [Conductor](https://github.com/bluelinelabs/Conductor), [Call Control DataShare](https://github.com/CallControl/Call-Control-DataShare), [libphonenumber-android](https://github.com/MichaelRocks/libphonenumber-android), [Mixpanel Android](https://github.com/mixpanel/mixpanel-android), [Venom](https://github.com/YarikSOffice/venom), [FlowLayout](https://github.com/nex3z/FlowLayout), [ARCore](https://developers.google.com/ar/discover), [GSYVideoPlayer](https://github.com/CarGuo/GSYVideoPlayer), [PermissionX](https://github.com/guolindev/PermissionX), [EventBus](https://github.com/greenrobot/EventBus), [Dynamicanimation](https://developer.android.com/jetpack/androidx/releases/dynamicanimation), [Google Drive](https://developers.google.com/drive/android), [Dropbox](https://github.com/dropbox), [MPAndroidChart](https://github.com/PhilJay/MPAndroidChart), [Facebook Products](https://developers.facebook.com/docs/facebook-login/android/), [PayPal](https://developer.paypal.com/docs/), [Stripe](https://github.com/stripe/stripe-android), [Easy Permissions](https://github.com/googlesamples/easypermissions), [socketIO](https://socket.io/), [Dexter](https://github.com/Karumi/Dexter), [Tikxml](https://github.com/Tickaroo/tikxml), [Markwon](https://github.com/noties/Markwon), [Scarlet](https://github.com/Tinder/Scarlet), [Android-Permissions](https://github.com/nabinbhandari/Android-Permissions), [RxPermissions](https://github.com/tbruyelle/RxPermissions), [android-upload-service](https://github.com/gotev/android-upload-service), [PermissionsDispatcher](https://github.com/permissions-dispatcher/PermissionsDispatcher), [ShortcutBadger](https://github.com/leolin310148/ShortcutBadger), [ARouter](https://github.com/alibaba/ARouter), [Sandwich](https://github.com/skydoves/Sandwich), [Calendar view](https://github.com/kizitonwose/CalendarView), [Biometric](https://developer.android.com/jetpack/androidx/releases/biometric), [Pretty Time](https://github.com/ocpsoft/prettytime), [Markdown Processor](https://github.com/yydcdut/RxMarkdown), [DiskLruCache](https://github.com/JakeWharton/DiskLruCache), [Duktape Android](https://github.com/square/duktape-android), [Evernote android-job](https://github.com/evernote/android-job), [Facebook Litho](https://github.com/facebook/litho), [Facebook SoLoader](https://github.com/facebook/SoLoader), [Data Binding](https://developer.android.com/topic/libraries/data-binding), [TimelineView](https://github.com/anacoimbrag/timeline-view)
## :memo: Contributing
See [contributing.md](contributing.md)
## :computer: Find us on
<div align="center">
<a href="https://github.com/androiddevnotes"> GitHub </a> / <a href="https://discord.gg/vBnEhuC"> Discord </a> / <a href="https://twitter.com/androiddevnotes"> Twitter </a> / <a href="https://www.instagram.com/androiddevnotes"> Instagram </a> / <a href="https://www.youtube.com/channel/UCQATLaT0xKkSm-KKVQzpu0Q"> YouTube </a> / <a href="https://medium.com/@androiddevnotes"> Medium </a>
<br><br>
<img width="320px" src="https://raw.githubusercontent.com/androiddevnotes/androiddevnotes/master/assets/androiddevnotes.png" alt="androiddevnotes logo"></img>
</div>