-
Notifications
You must be signed in to change notification settings - Fork 261
/
README.md
1067 lines (558 loc) · 60 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
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
<h1 align="center">Awesome Android Learning Resources</h1></br>
<p align="center">
:eyeglasses: A curated list of awesome android learning resources for android app developers.
</p>
<br>
<p align="center">
<a href="https://awesome.re"><img alt="Awesome" src="https://awesome.re/badge-flat.svg"/></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 Learning Resources** aims to be the starting point for Android App Developers to find the finest learning content for Android App Development.
The content is Android Kotlin App development focused. Android Java content which can be of benefit to developers is listed and are under Java section.
Content in languages other than English is tagged according to ISO 639-2 codes.
**Confused where to begin?** Start with [Official Android Courses.](https://developer.android.com/courses)
## Contents
- [Jetpack Compose Learning Resources](#jetpack-compose-learning-resources)
- [Certification](#certification)
- [Books](#books)
- [Video Courses](#video-courses)
- [YouTube Channels](#youtube-channels)
- [Twitch Channels](#twitch-channels)
- [Blogs and Tutorial Websites](#blogs-and-tutorial-websites)
- [Podcasts](#podcasts)
- [Newsletters](#newsletters)
- [Docs / Other](#docs--other)
- [Open-source projects](#open-source-projects)
- [Android and Kotlin Conferences](#android-and-kotlin-conferences)
- [Communities](#communities)
- :memo: [**Contributing**](#memo-contributing)
- :lotus_position_woman: [**Contributors**](#lotus_position_woman-contributors)
- :computer: [**Find us on**](#computer-find-us-on)
## Jetpack Compose Learning Resources
- [Jetpack Compose Learning Resources](https://github.com/androiddevnotes/learn-jetpack-compose-android) - A continuously updated list of learning Jetpack Compose for Android apps.
## Certification
- [Associate Android Developer](https://developers.google.com/certification/associate-android-developer) - The exam is designed to test the skills of an entry-level Android developer. To study the certification, google offers its [study guide](https://developers.google.com/certification/associate-android-developer/study-guide), where you can read all topics and also practice your knowledge with the codelabs indicated for each competency. Despite being paid, you can study all topics and practice on all codelabs for free in the mentioned study guide.
## Books
### Android focused
- [Real-World Android by Tutorials](https://www.raywenderlich.com/books/real-world-android-by-tutorials/v1.0) - Build professional, secure Android apps for the real world using the most important architectures and libraries.
- [Programming Android with Kotlin](https://learning.oreilly.com/library/view/programming-android-with/9781492062998/) - This book helps Android developers make the transition from Java to Kotlin and shows them how Kotlin provides a true advantage for gaining control over asynchronous computations.
- [How to Build Android Apps with Kotlin](https://www.packtpub.com/product/how-to-build-android-apps-with-kotlin/9781838984113) - This book starts with the fundamentals of app development. Moving ahead, you'll get to grips with testing, learn how to keep your architecture clean, understand how to persist data, and gain basic knowledge of the dependency injection pattern. Finally, you'll see how to publish your apps on the Google Play store.
- [Instant Android Fragmentation Management How-to](https://www.packtpub.com/application-development/instant-android-fragmentation-management-how-instant) - Instant Android Fragmentation Management How-to is a step-by-step guide to writing applications that can run on all devices starting from Android 1.6.
- [Instant Android Systems Development How-to](https://www.packtpub.com/instant-android-systems-development-how-to) - Instant Android Systems Development How-to provides a gentle introduction to the platform internals without sacrificing depth.
- [Android Things Quick Start Guide](https://www.packtpub.com/product/android-things-quick-start-guide/9781789341799) - This book takes you through the basics of IoT and smart devices. It will help you to interact with common IoT device components and learn the underlying protocols. For a simple setup, we will be using Rainbow HAT so that we don't need to do any wiring.
- [33 Engineering Challenges of Building Mobile Apps at Scale eBook & Other Learnings](https://gumroad.com/l/IuuuN) - Industry practices used by large Native mobile teams.
- [Android High Performance Programming](https://www.oreilly.com/library/view/android-high-performance/9781785288951/) - Build fast and efficient Android apps that run as reliably as clockwork in a multi-device world.
- [Android Internals: A Confectioner's Cookbook](http://newandroidbook.com/) - Deals exclusively with the internals of the Android operating system.
- [Android Apprentice](https://store.raywenderlich.com/products/android-apprentice) - Android Apprentice is the book for complete beginners to Android development.
- [Reactive Programming with Kotlin](https://store.raywenderlich.com/products/reactive-programming-with-kotlin) - The book that teaches you to use RxJava, RxAndroid and RxKotlin to create complex reactive applications on Android and exercise full control over the library to leverage the full power of reactive programming in your apps.
- [Android Test-Driven Development by Tutorials](https://store.raywenderlich.com/products/android-test-driven-development-by-tutorials) - A book that teaches you to write sustainable, testable apps, as well as to apply testing strategies to legacy projects via Espresso and UI tests, code coverage and refactoring.
- [Advanced Android App Architecture](https://store.raywenderlich.com/products/advanced-android-app-architecture) - In Advanced Android App Architectures, you'll find a diverse and hands-on approach to architecting your apps on Android. Learn how to build scaleable and maintainable architectures in Android and Kotlin, including MVC, MVP, MVI, MVVM and VIPER!
- [Saving Data on Android](https://store.raywenderlich.com/products/saving-data-on-android) - A book that will teach you to persist data on Android — saving locally or remotely — along with the modern techniques for synchronization, allowing your app to be reactive and always up-to-date.
- [Data Structures & Algorithms in Kotlin](https://store.raywenderlich.com/products/data-structures-and-algorithms-in-kotlin) - A book that teaches you the fundamental tools of implementing key data structures in Kotlin, and how to use them to solve algorithms.
- [Kotlin for Android App Development](https://kotlinandroidbook.com/) - This book hits the sweet spot between theory and practice, teaches you the best practices for object-orientation, functional programming, interoperability and more in Kotlin, and gives you a practical intro with hundreds of code listings.
- [Elements of Android Jetpack](https://commonsware.com/Jetpack/) - This book follows in the footsteps of The Busy Coder's Guide to Android Development, to introduce developers to Android app development, focusing on Jetpack. Here you will learn how to set up an Android app for Java or Kotlin, create a user interface, and more!
- [Exploring Android](https://commonsware.com/AndExplore/) - This book has you build an app from the beginning. Whereas traditional programming guides are focused on breadth and depth, this book is focused on “hands-on”, guiding you through the steps to build the app.
- [Elements of Android R](https://commonsware.com/R/) - Each new release brings new opportunities and new challenges for Android developers. Many of the new challenges are extensions of the problems introduced in last year's Android 10. So, if you are worried about further changes to storage or permissions, or you are nervous about new restrictions being placed on developers, this book is for you!
- [Elements of Android Room](https://commonsware.com/Room/) - This book explores Room.
- [Elements of Android Q](https://commonsware.com/Q/) - As usual, Android 10 changed some things that affect developers and apps. This book profiles those changes and helps point out what you need to do to adjust your app to cope with those changes. So, if you are worried about the death of external storage and other things that Android 10 brings with it, this book is for you!
- [Learning RxJava](https://www.packtpub.com/in/programming/learning-rxjava-3-second-edition) - In this book, you'll cover the core fundamentals of reactive programming and learn how to design and implement reactive libraries and applications.
- [Gradle Recipes for Android](https://www.oreilly.com/library/view/gradle-recipes-for/9781491947272/) - This hands-on guide provides a collection of Gradle recipes to help you quickly and easily accomplish the most common build tasks for your Android apps.
- [Kotlin for Android Developers](https://antonioleiva.com/kotlin-android-developers-book/) - Kotlin for Android Developers.
- [Android™ Notes for Professionals book](https://books.goalkicker.com/AndroidBook/) - Android™ Notes for Professionals book.
- [Android System Programming](https://www.oreilly.com/library/view/android-system-programming/9781787125360/) - Build, customize, and debug your own Android system.
- [Head First Android Development](https://www.oreilly.com/library/view/head-first-android/9781491974049/) - You'll learn hands-on how to structure your app, design flexible and interactive interfaces, run services in the background, make your app work on various smartphones and tablets, and much more.
- [Professional Android](https://www.oreilly.com/library/view/professional-android-4th/9781118949528/) - Professional Android, 4th Edition shows developers how to leverage the latest features of Android to create robust and compelling mobile apps
- [Android Studio 3.6 Development Essentials](https://www.oreilly.com/library/view/android-studio-36/9781800560970/) - Update your Android studio skills and build modern Android applications using Java.
- [Mastering Firebase for Android Development](https://www.oreilly.com/library/view/mastering-firebase-for/9781788624718/) - Develop a fully functional dynamic Android application using the latest features of Firebase.
- [The Busy Coder's Guide to Android Development](https://commonsware.com/Android/) - This book contains over 200 chapters, covering everything from the first steps in getting an app going to advanced development techniques. Use the search field in the nav bar to see what is inside this book and the rest of the CommonsWare library!
- [Android's Architecture Components](https://commonsware.com/AndroidArch/) - This book dives deep into the Architecture Components, showing you how they work individually and in concert.
- [Android Programming: The Big Nerd Ranch Guide](https://www.bignerdranch.com/books/android-programming-the-big-nerd-ranch-guide-4th/) - Dive in to learn the foundations of Android application development. The content is now in Kotlin and updated with modern Android practices.
### Kotlin language-focused
- [Atomic Kotlin](https://www.atomickotlin.com/) - Atomic Kotlin is the book and associated learning resources by Bruce Eckel and Svetlana Isakova.
- [Effective Kotlin](https://leanpub.com/effectivekotlin/) - Effective Kotlin summarizes the best practices and experiences of the Kotlin community, together with a deep explanation of some lesser-known Kotlin functionalities. All of the best practices are presented as simple rules with detailed explanations.
- [Kotlin Cookbook](https://www.oreilly.com/library/view/kotlin-cookbook/9781492046660/) - Use Kotlin to build Android apps, web applications, and more—while you learn the nuances of this popular language.
- [Kotlin Apprentice](https://store.raywenderlich.com/products/kotlin-apprentice) - Learn programming with Kotlin! The Kotlin Apprentice is a book designed for complete beginners to Kotlin, a modern language used for Android development.
- [Kotlin Coroutines by Tutorials](https://store.raywenderlich.com/products/kotlin-coroutines-by-tutorials) - Android is inherently asynchronous and event-driven, with strict requirements as to on which thread certain things can happen. Learn how to use Kotlin coroutines to solve common Android programming problems using asynchronous programming techniques!
- [Functional Kotlin](https://www.amazon.com/gp/product/B078JRKFYF/) - Learn how to apply Functional Programming with Kotlin to real-life projects with popular libraries like Arrow.
- [Hands-On Data Structures and Algorithms with Kotlin](https://www.amazon.com/gp/product/B07DTG2629) - Understand and solve complex computational problems and write efficient code with Kotlin.
- [Elements of Kotlin Coroutines](https://commonsware.com/Coroutines/) - This book is designed to help you get “spun up” on coroutines and how they can be applied in your projects.
- [Elements of Kotlin](https://commonsware.com/Kotlin/) - This introductory book to Kotlin focuses on helping existing programmers get up to speed on reading and writing Kotlin code. Particular emphasis is placed on the sorts of syntax and language capabilities that most Kotlin developers will need, with light coverage of the advanced capabilities that allow library developers to create easy-to-use APIs.
- [Programming Kotlin](https://www.oreilly.com/library/view/programming-kotlin/9781680507287/) - If you want to learn the essentials of Kotlin, from the fundamentals to more advanced concepts, you've picked the right book.
- [Kotlin docs](https://kotlinlang.org/docs/kotlin-docs.pdf) - Kotlin Language Documentation.
- [Hands-on Design Patterns with Kotlin](https://www.packtpub.com/in/application-development/hands-design-patterns-kotlin) - The mission of this book is to ease the adoption of design patterns in Kotlin and provide good practices for programmers.
- [Learning Concurrency in Kotlin](https://www.packtpub.com/in/application-development/learning-concurrency-kotlin) - Beginning with an introduction to Kotlin's coroutines, you will learn how to write concurrent code and understand the fundamental concepts needed to be able to write multithreaded software in Kotlin.
- [Learn Kotlin Programming](https://www.packtpub.com/in/application-development/learn-kotlin-programming-second-edition) - Kotlin is a general-purpose programming language used for developing cross-platform applications. Complete with a comprehensive introduction and projects covering the full set of Kotlin programming features, this book will take you through the fundamentals of Kotlin and get you up to speed in no time.
- [Effective Kotlin](https://leanpub.com/effectivekotlin) - Effective Kotlin summarizes the best practices and experiences of the Kotlin community, together with a deep explanation of some lesser-known Kotlin functionalities. All of the best practices are presented as simple rules with detailed explanations.
- [Kotlin Programming: The Big Nerd Ranch Guide Book](https://www.bignerdranch.com/books/kotlin-programming-the-big-nerd-ranch-guide-2/) - Learn the new language that's taking the Android world by storm in Kotlin Programming: The Big Nerd Ranch Guide.
- [Mastering Kotlin](https://www.packtpub.com/in/application-development/mastering-kotlin) - By the end of the book, you'll have obtained an advanced understanding of Kotlin in order to be able to build production-grade applications.
- [Kotlin in Action](https://www.manning.com/books/kotlin-in-action) - Kotlin in Action guides experienced Java developers from the language basics of Kotlin all the way through building applications to run on the JVM and Android devices.
- [The Joy of Kotlin](https://www.manning.com/books/the-joy-of-kotlin) - The Joy of Kotlin teaches you to write comprehensible, easy-to-maintain, safe programs with Kotlin.
- [Head First Kotlin](https://www.oreilly.com/library/view/head-first-kotlin/9781491996683/) - Head First Kotlin is a complete introduction to coding in Kotlin.
- [Kotlin Glossary](https://kotlin-glossary-ebook.caster.io/) - A short, sweet 21-page ebook on Kotlin that has a lot of terminologies, code snippets and helpful tips to help you in your Kotlin journey, whether you're a beginner or someone who needs a Kotlin cheatsheet.📒
- [ANDROID™ 4 APPLICATION DEVELOPMENT](http://yuliana.lecturer.pens.ac.id/Android/Buku/professional_android_4_application_development.pdf) - This book focuses on basics of the Android developlment with JAVA as programming language.
## Debugging:
- [Debug your Android apps with Charles Proxy.](https://medium.com/native-mobile-bits/debug-your-android-apps-with-charles-proxy-991732d98ebd) - A step by step guide to use Charles proxy to debug your android apps.
- [Debug your Apps without cable](https://medium.com/native-mobile-bits/debug-your-apps-without-cable-99452daf8755) - As an Android developer, Debugging is one of the most common tasks which we do on a daily basis, lets do it easily.
## Scholarships :
- [Google Africa Developer Scholarship](https://andela.com/alc/in-progress/google-africa-developer-scholarship-2021/) (limited to Africa) is a program that gives participants free access to select courses, projects, embedded labs (powered by Qwiklabs) and skill assessments on Pluralsight; plus support from the Google Developer community. The program is in partnership with tech talent companies Pluralsight, Andela and Google. Google will give full scholarships (with certifications in Android and cloud development) to the top 1,000 students (beginner and intermediate developers) at the end of the training.
- [The Google Developer Scholarship and the Power of Community](https://www.udacity.com/blog/2018/08/the-google-developer-scholarship-and-the-power-of-community.html) is a Scholarship for students across the EMEA (Europe, Middle East and Africa) region announced by Udacity and Google. On offer was the chance to land a scholarship for Udacity’s Android Basics, Android Developer and other Developer Nanodegree programs.
## Video Courses
Note: Listed below are only a few courses provided by each platform. Please visit their site for a full catalog.
#### EN
### [Dev Stories](https://www.youtube.com/channel/UCPSqYE0QAHRbw8D7gfOsjyQ)
- [Let's build an Android browser with Mozilla components](https://www.youtube.com/watch?v=9apPcuuvUzc&list=PLRJ4pSIA9DGtamE77FNiLj_TZkAFS9OSb&index=7)
### [Amr Yousef](https://www.youtube.com/playlist?list=PLQ-kWxQHnfyxLosF2Lc9wVJNFvCe8V2rc)
- [Android On Demand Modules](https://www.youtube.com/playlist?list=PLQ-kWxQHnfyxLosF2Lc9wVJNFvCe8V2rc)
### [Marcos Holgado](https://www.youtube.com/channel/UC8WCG63gxCipBBPW8m2j5jw)
- [Building a plugin for Android Studio](https://www.youtube.com/watch?v=IGoMdEz_-bI&list=PLJD6kP0BIuwOlvpHQd9YkneVpsG8fMV8W)
### [Android Things](https://www.youtube.com/channel/UCpZgRkTgc1lGnusjCi1cCfg) courses - Listed a few courses | Visit site for full catalog
- [Introduction to the Android Things Framework](https://www.youtube.com/watch?v=kZ-iV5al4Os&list=PL-ed5yhQ_xe73GQauE47aNWMrzfkEYtkh)
### [CodingWithMitch](http://codingwithmitch.com/) courses - Listed a few courses | Visit site for full catalog
#### Kotlin
- [Jetpack Compose MVVM for Beginners](https://codingwithmitch.com/courses/jetpack-compose-mvvm-for-beginners/)
- [Clean Architecture](https://codingwithmitch.com/courses/android-clean-architecture/)
- [UI Testing with Jetpack and AndroidX](https://codingwithmitch.com/courses/ui-testing-jetpack-androidx/)
- [UI Testing for Beginners](https://codingwithmitch.com/courses/ui-testing-for-beginners/)
- [Model-View-Intent (MVI) Architecture](https://codingwithmitch.com/courses/model-view-intent-mvi-architecture/)
- [Powerful Android Apps with Jetpack Architecture](https://codingwithmitch.com/courses/powerful-android-apps-with-jetpack-architecture/)
#### Java
- [Unit Testing](https://codingwithmitch.com/courses/unit-testing-android-2/)
- [Dagger2.2+ on Android](https://codingwithmitch.com/courses/dagger22-android/)
- [REST API with MVVM and Retrofit2](https://codingwithmitch.com/courses/rest-api-mvvm-retrofit2/)
- [Local Database Cache with REST API](https://codingwithmitch.com/courses/android-local-database-cache-rest-api/)
- [SQLite for Beginners 2019](https://codingwithmitch.com/courses/sqlite-room-persistence-android/)
- [Audio Streaming on Android](https://codingwithmitch.com/courses/android-audio-streaming/)
### [Coding in Flow](https://www.youtube.com/channel/UC_Fh8kvtkVPkeihBs42jGcA) courses - Listed a few courses | Visit site for full catalog
- [MVVM Caching Course](https://codinginflow.com/caching)
- [MVVM To-Do List App with Flow and Architecture Components](https://www.youtube.com/watch?v=Udk6iaR-RXA&list=PLrnPJCHvNZuCfAe7QK2BoMPkv2TGM_b0E)
### [Udacity](https://www.udacity.com/) courses - Listed a few courses | Visit site for full catalog
- [Developing Android Apps with Kotlin](https://www.udacity.com/course/developing-android-apps-with-kotlin--ud9012)
- [Advanced Android with Kotlin](https://www.udacity.com/course/advanced-android-with-kotlin--ud940)
- [Firebase in a Weekend for Android by Google FREE COURSE](https://www.udacity.com/course/firebase-in-a-weekend-by-google-android--ud0352)
### [Udemy](https://www.udemy.com/) courses - Listed a few courses | Visit site for full catalog
#### EN
- [The Complete Android 10 & Kotlin Development Masterclass](https://www.udemy.com/course/android-kotlin-developer/)
- [Complete Kotlin Coroutines development course](https://www.udemy.com/course/coroutines/)
- [Android Multithreading Masterclass](https://www.udemy.com/course/android-multithreading/)
- [To-Do App & Clean Architecture -Android Development - Kotlin](https://www.udemy.com/course/to-do-app-clean-architecture-android-development-kotlin/)
- [The Complete Android + Kotlin Developer Course](https://www.udemy.com/course/complete-kotlin-android-developer-course-tutorial/)
- [The Complete Android Oreo Developer Course - Build 23 Apps!](https://www.udemy.com/course/the-complete-android-oreo-developer-course/)
#### TR
- [Android Mobil Uygulama Kursu: Kotlin & Java](https://www.udemy.com/course/android-o-mobil-uygulama-dersi-kotlin-java/)
- [Android Mobil Uygulama Geliştirme Eğitimi | Java | 2020](https://www.udemy.com/course/android-mobil-uygulama-gelistirme-egitimi-java/)
- [https://www.udemy.com/course/android-mobil-uygulama-kursu-seviye-2/](https://www.udemy.com/course/android-mobil-uygulama-kursu-seviye-2/)
### [Pluralsight](https://www.pluralsight.com/) courses - Listed a few courses | Visit site for full catalog
- [Android Apps with Kotlin: Tools and Testing](https://www.pluralsight.com/courses/android-apps-kotlin-tools-testing)
- [Android File System](https://www.pluralsight.com/courses/android-file-system)
- [android-development-with-kotlin-fundamentals](https://www.pluralsight.com/paths/android-development-with-kotlin-fundamentals)
- [Getting Started with Android Development By Nate Ebel](https://www.pluralsight.com/courses/getting-started-android-development)
- [Google: Associate Android Developer (AAD)](https://www.pluralsight.com/paths/google-android-associate-developer-aad)
### [Freecodecamp](https://www.youtube.com/Freecodecamp) courses - Listed a few courses | Visit site for full catalog
- [Kotlin Course - Tutorial for Beginners](https://www.youtube.com/watch?v=F9UC9DY-vIU)
- [Android Development Course - Build Native Apps With Kotlin Tutorial](https://www.youtube.com/watch?v=Iz08OTTjR04)
### [raywenderlich](https://www.raywenderlich.com/) courses - Listed a few courses | Visit site for full catalog
- [Android Networking: Fundamentals](https://www.raywenderlich.com/10376651-android-networking-fundamentals)
- [Kotlin Flow: Getting Started](https://www.raywenderlich.com/9147615-kotlin-flow-getting-started)
- [CameraX: Getting Started](https://www.raywenderlich.com/7005190-camerax-getting-started)
- [Jetpack Compose Primer](https://www.raywenderlich.com/7111549-jetpack-compose-primer)
- [MVI on Android](https://www.raywenderlich.com/266607-mvi-on-android)
- [Beginning RxKotlin](https://www.raywenderlich.com/7419-beginning-rxkotlin)
- [Beginning Android Debugging](https://www.raywenderlich.com/9261991-beginning-android-debugging)
- [Android Studio Tips and Tricks](https://www.raywenderlich.com/10054540-android-studio-tips-and-tricks)
- [Programming in Kotlin: Functions & Custom Types](https://www.raywenderlich.com/8458472-programming-in-kotlin-functions-custom-types)
- [Programming in Kotlin: Fundamentals](https://www.raywenderlich.com/7910496-programming-in-kotlin-fundamentals)
- [Beginning Android Layouts](https://www.raywenderlich.com/8080493-beginning-android-layouts)
- [Dependency Injection with Koin](https://www.raywenderlich.com/7042416-dependency-injection-with-koin)
- [Testing With MockK](https://www.raywenderlich.com/5443751-testing-with-mockk)
### [After Academy](https://courses.afteracademy.com/) courses - Listed a few courses | Visit site for full catalog
- [Android Dagger and Dependency Management](https://courses.afteracademy.com/p/android-dagger-and-dependency-management)
- [RxJava - Learn by Examples](https://courses.afteracademy.com/p/rxjava-learn-by-examples)
- [Android MVVM Architecture](https://courses.afteracademy.com/p/android-mvvm-architecture)
- [Android Build System and Memory Management](https://courses.afteracademy.com/p/android-build-system-and-memory-management)
- [Kotlin Coroutines and Flow API for Android](https://courses.afteracademy.com/p/kotlin-coroutines-and-flow-api-for-android)
### [PL Coding](https://pl-coding.com/courses/) courses - Listed a few courses | Visit site for full catalog
- [Spotify Clone with Exoplayer](https://pl-coding.com/courses/mvvm-spotify-clone-with-exoplayer/)
- [Testing on Android](https://pl-coding.com/courses/testing-on-android/)
- [MVVM Running Tracker App](https://pl-coding.com/courses/mvvm-running-tracker-app/)
- [Android Fundamentals](https://pl-coding.com/courses/android-fundamentals/)
### [MindOrks](https://mindorks.com/android-app-development-online-course) courses - Visit site for full catalog
### [Android Developer](https://developer.android.com/courses) courses - Listed a few courses | Visit site for full catalog
- [Android Basics in Kotlin](https://developer.android.com/courses/android-basics-kotlin/course)
### [Code Real Projects](https://coderealprojects.com/) courses - Visit site for full catalog
### [Coursera](https://www.coursera.org/) courses - Listed a few courses | Visit site for full catalog
- [Kotlin for Java Developers](https://www.coursera.org/learn/kotlin-for-java-developers)
- [Android App Development Specialization](https://www.coursera.org/specializations/android-app-development)
- [Build Your First Android App](https://www.coursera.org/learn/android-app)
### [edx](https://www.edx.org/) courses - Visit site for full catalog
### [Skillshare](https://www.skillshare.com/) courses - Visit site for full catalog
### [Treehouse](https://teamtreehouse.com/) courses - Visit site for full catalog
### [Eduonix](https://www.eduonix.com/) courses - Visit site for full catalog
### [Lynda](https://www.lynda.com/) courses - Visit site for full catalog
### [Orielly](https://www.oreilly.com/) courses - Visit site for full catalog
#### TR
### [turkcell](https://gelecegiyazanlar.turkcell.com.tr/konu/android) courses - Visit site for full catalog
### [mobilhanem](https://www.mobilhanem.com/android-uygulama-gelistirme/) courses - Visit site for full catalog
#### ZH
### [Classroom](http://ke.qq.com/) courses - Visit site for full catalog
### [hukai](http://hukai.me/) courses - Visit site for full catalog
## YouTube Channels
#### EN
- [Android Developers](https://www.youtube.com/user/androiddevelopers)
- [Jovche Mitrejchevski](https://www.youtube.com/user/mitrejcevski)
- [Coding in Flow](https://www.youtube.com/channel/UC_Fh8kvtkVPkeihBs42jGcA)
- [CodingWithMitch](https://www.youtube.com/channel/UCoNZZLhPuuRteu02rh7bzsw)
- [Awesome Dev Notes](https://www.youtube.com/channel/UCQATLaT0xKkSm-KKVQzpu0Q)
- [Curated Reality](https://www.youtube.com/channel/UCPOuUo_GoXtRg08CWtQrWBQ)
- [AlexZh Dev](https://www.youtube.com/channel/UCGaWGZ23II5am251vQCEt_Q)
- [goobar](https://www.youtube.com/channel/UCVysWoMPvvHQMEJvRkslbAQ)
- [Codetutor](https://www.youtube.com/user/funnybunnyanil)
- [Rahul Pandey](https://www.youtube.com/c/RahulPandeyrkp/)
- [Code Palace](https://www.youtube.com/channel/UCuudpdbKmQWq2PPzYgVCWlA)
- [Philipp Lackner](https://www.youtube.com/channel/UCKNTZMRHPLXfqlbdOI7mCkg)
- [Simplified Coding](https://www.youtube.com/user/SimplifiedCoding)
- [Reso Coder](https://www.youtube.com/channel/UCSIvrn68cUk8CS8MbtBmBkA)
- [Tihomir RAdeff](https://www.youtube.com/user/yohohoasakura)
- [MindOrks](https://www.youtube.com/channel/UCocBChVv7HPx0g5SbnOUv7w)
- [Android Dialogs](https://www.youtube.com/channel/UCMEmNnHT69aZuaOrE-dF6ug)
- [Hey! Let's Code](https://www.youtube.com/c/HeyLetsCode/)
- [raywenderlich.com](https://www.youtube.com/user/rwenderlich)
- [Smartherd](https://www.youtube.com/user/smartherd)
- [AppDevNotes-Learn Android Development](https://www.youtube.com/channel/UCEs0Rbf3M4M76bavm4d_big)
- [wiseAss](https://www.youtube.com/user/gosuddr93)
- [JetBrainsTV](https://www.youtube.com/user/JetBrainsTV)
- [freeCodeCamp.org](https://www.youtube.com/channel/UC8butISFwT-Wl7EV0hUK0BQ)
- [EDMT Dev](https://www.youtube.com/user/eddydn71)
- [edureka](https://www.youtube.com/user/edurekaIN)
- [PRABEESH R K](https://www.youtube.com/user/TICOONTECHNOLOGIES)
- [Stevdza-San](https://www.youtube.com/channel/UCYLAirIEMMXtWOECuZAtjqQ)
- [Leland Richardson](https://www.youtube.com/c/LelandRichardsonDev)
- [Mike Johnston](https://www.youtube.com/user/355MrBean)
- [AsyncAndroid](https://www.youtube.com/c/AsyncAndroid)
- [teachmesome](https://www.youtube.com/channel/UCIWC3bm2eKj0wLGFULhzKdA)
- [Cody Engel](https://www.youtube.com/c/CodyEngelTalks)
- [TVAC Studio](https://www.youtube.com/c/TVACStudio)
- [Aws Rh](https://www.youtube.com/c/AwsRh)
- [Master Coding](https://www.youtube.com/channel/UCb0VX3DhuwYY21ZFqf8LSqQ)
- [Kotlin Mumbai](https://www.youtube.com/channel/UCJQnTIjmJPPl-boDmIDdDSA)
- [Cheesy Code](https://www.youtube.com/channel/UCOknqk-MSOCf3SANW8Wumfg)
- [CodeAndroid](https://www.youtube.com/c/CodeAndroid)
- [All Techies](https://www.youtube.com/channel/UC6Cd6oKTujZ1kGw2DpLmYng)
- [Paulina talks Android](https://www.youtube.com/c/PaulinatalksAndroid)
#### ES
- [Sociedad Androide](https://www.youtube.com/c/SociedadAndroide/)
- [DevExperto - Antonio Leiva](https://www.youtube.com/c/DevExperto/)
#### FR
- [DrcMDev](https://www.youtube.com/channel/UCM5yhphpMeNDmNUP-dW2mHw/)
#### RU
- [Android Broadcast](https://www.youtube.com/c/AndroidBroadcast/)
#### TR
- [Uygula Öğren - Web Tasarım ve Yazılım Dersleri](https://www.youtube.com/channel/UCm8oo9Eg29-Tg00Q4lYMUIQ)
## Twitch Channels
#### EN
- [intelligibabble](https://www.twitch.tv/intelligibabble) - Leland Richardson.
- [adammc331](https://www.twitch.tv/adammc331) - Adam McNeilly.
- [Elliott_Troop](https://www.twitch.tv/elliott_troop) - Elliott Troop.
- [ThePocmo](https://www.twitch.tv/ThePocmo) - ThePocmo.
## Blogs and Tutorial Websites
### Android focused
#### EN
- [Camposha - Android Examples](https://camposha.info/android-examples/) - Learn by following Android Examples
- [Maia Grotepass code experiments](https://www.maiatoday.net/) - This site documents my projects, code snippets, notes to myself so I won’t forget and other random explorations.
- [Jean-Michel Fayard](https://jmfayard.dev/) - I have no special talent. I am only passionately curious.
- [Lukas Lechner](https://www.lukaslechner.com/) - Freelance Android Developer.
- [Ben Trengrove](http://bentrengrove.com/) - Android / iOS Developer based Canberra, Australia. I am the Lead Mobile Engineer at Pocket Casts.
- [Sebastiano Poggi](https://blog.sebastiano.dev/) - He writes blogs on Android and Kotlin things.
- [DevLog | Adam Świderski](https://asvid.github.io/) - I'm software engineer at Cybersource/Visa, mainly occupied with our JVM SDK development, but I also have some experience with Frontend, occasionally I do backend work.
- [Josh Skeen](http://joshskeen.com/) - I'm an Android Engineer & Instructor at Big Nerd Ranch.
- [Jason Atwood](https://jasonatwood.io/) - Blog on Android, Gradle ...
- [Android Essence](https://androidessence.com/) - Android Essence's purpose is to break down Android development in ways that everyone can learn from, regardless of skill level.
- [Cash App Code Blog](https://cashapp.github.io/) - Cash App Blog by development team.
- [Rahul Ravikumar](https://rahulrav.com/blog/) - Android and Programming blog.
- [Karumi Blog](https://blog.karumi.com/) - This is where we want to share thoughts and experiences of running our software development company. We are glad you are here, please make yourself at home and read on!
- [Coding with Mohit](https://codingwithmohit.com/posts/) - Kotlin Advocate, Public Speaker & Android Developer.
- [Egor's Blog](https://blog.egorand.me/) - Android, Kotlin and other tech
- [Sachin's Blog](https://iamsachinrajput.medium.com/) - Articles on Android, Kotlin based on real app development experiences.
- [Dropbox Tech Mobile](https://dropbox.tech/mobile) - Articles on Mobile development by Dropbox engineers.
- [Jamie McDonald](https://jdam.cd/) - I build mobile apps and software teams.
- [Jeroen Mols](https://jeroenmols.com/blog/) - Android freelancer and Google Developer Expert.
- [Raúl Hernández López – Insights & Projects](https://raulh82vlc.github.io/) - Senior Software Engineer - Android at Twitter & Kotlin lover.
- [Mike Penz](https://blog.mikepenz.dev/) - I write about Kotlin, Android, GitHub Actions, and other tips and tricks.
- [Stojan Anastasov's blog](https://lordraydenmk.github.io/) - Android developer crafting native Android apps.
- [Jovche Mitrejchevski](https://jovmit.io/) - I'm a software craftsman, currently focusing on Kotlin and Android.
- [Manuel Vivo .dev](https://manuelvivo.dev/) - A place where you can learn about Android development
- [Rebecca Franks - @riggaroo](https://riggaroo.dev/) - Android Development.
- [Blundell](https://blog.blundellapps.co.uk/) - Android Developer Tutorials and Blog.
- [CHRIS HORNER](https://chrishorner.codes/post/) - Sometimes I write about things.
- [Gabriel Vasconcelos](https://gabrielfv.com/) - Android Developer.
- [Infinum Android Handbook](https://infinum.com/handbook/books/android/) - Our handbook is based on 10 years of experience in Android development.
- [Jake Lee](https://blog.jakelee.co.uk/) - Mostly Android tutorials, tips, and troubleshooting, with a little bit of web dev / general software dev.
- [Rivu Chakraborty](https://www.rivu.dev/) - Kotlin Advocate, Android Dev & Enthusiast, Public Speaker, Author of Multiple Kotlin Books.
- [Greater than null](https://greaterthannull.dev/) - Development Blog for Android.
- [simplifiedcoding](https://www.simplifiedcoding.net/) - Learn building apps.
- [zacsweers](https://www.zacsweers.dev/) - Life, travel, code, and the whitespace in between.
- [AndroidPub](https://android.jlelse.eu/) - The Pub(lication) for Android & Tech, focused on Development.
- [CodingWithMitch](http://codingwithmitch.com/blog) - Blogs by CodingWithMitch community.
- [Jake Wharton](https://jakewharton.com/blog/) - Blogs by Jake Wharton.
- [CodePath Guides](https://guides.codepath.com/android/) - CodePath Android Cliffnotes.
- [AndroidSweets](https://androidsweets.ongoodbits.com/) - Fresh news from Droid zone.
- [lordcodes](https://www.lordcodes.com/android/) - All content aimed at Android and Kotlin developers.
- [AlexZH Dev](https://alexzh.com/) - AlexZH blogs.
- [TechYourChance](https://www.techyourchance.com/) - TechYourChance by Vasiliy Zukanov.
- [Handstand Sam](https://handstandsam.com/) - Kotlin blogs.
- [segunfamisa](https://segunfamisa.com/) - Do. Something. Awesome.
- [JOE BIRCH](https://joebirch.co/) - Blogs on Android, Kotlin.
- [Ryan Harter](https://ryanharter.com/) - Android Development Blogs by Ryan Harter.
- [MICHAEL EVANS](http://michaelevans.org/) - A bunch of technobabble.
- [egorand](https://blog.egorand.me/) - Android, Kotlin and other tech.
- [PUBLIC OBJECT](https://publicobject.com/) - PUBLIC OBJECT blogs.
- [stylingandroid](https://blog.stylingandroid.com/) - Blog by Mark Allison.
- [coroutinedispatcher](https://www.coroutinedispatcher.com/) - Coroutinedispatchers' blog.
- [Hellsoft](https://www.hellsoft.se/) - Blog posts about code.
- [Jorge Castillo](https://jorgecastillo.dev/) - Tech posts by Jorge Castillo.
- [Android Example 365](https://androidexample365.com/) - Android Example 365 Blogs.
- [Future Studio](https://futurestud.io/) - Skyrocket in Android and Node.js.
- [zsmb.co](https://zsmb.co/) - Blog by Márton Braun.
- [dev.to](https://dev.to/) - Social Network for Developers.
- [Codelabs](https://codelabs.developers.google.com/) - Google Developers Codelabs provide a guided, tutorial, hands-on coding experience.
- [Android Developers](https://medium.com/androiddevelopers) - The official Android Developers publication on Medium.
- [krinotech](https://krinotech.com/) - Krinotech blog.
- [Inspire Coding](https://inspirecoding.app/) - Android development in Kotlin.
- [Android Developer Roadmap](https://roadmap.sh/android) - Step by step guide to becoming an Android developer.
- [goobar](https://goobar.io/) - Blog by Nate Ebel.
- [The Coding Troops](https://codingtroops.com/) - Develop maintainable and scalable Android & iOS apps.
- [Rock and Null](https://www.rockandnull.com/) - Tech, software and whatever comes to mind.
- [Vlad Sonkin](https://vladsonkin.com/) - Android Development Blog.
- [Dan Lew](https://blog.danlew.net/) - Thoughts on life, the universe and the mystery of it all; but actually mostly just code.
- [The CommonsBlog](https://commonsware.com/blog/) - The CommonsBlog by CommonsWare.
- [ProAndroidDev](https://proandroiddev.com/) - Professional Android Development: the latest posts from Android Professionals and Google Developer Experts.
- [MindOrks](https://mindorks.com/) - Learn Android App Development.
- [vogella](http://vogella.com/) - Android Tutorials by vogella.
- [bignerdranch](https://www.bignerdranch.com/resources/blog/) - BLOGS FROM THE RANCH.
- [antonioleiva](https://antonioleiva.com/) - Kotlin and Android Development tutorials by Antonio Leiva.
- [AndroidBites](https://chetangupta.net/) - Post | Articles | Snippets for Android Professionals.
- [raywenderlich](https://www.raywenderlich.com/) - The best investment for your mobile development career.
- [Retrofit Tutorial via Future Studio](https://futurestud.io/tutorials/retrofit-getting-started-and-android-client) - Extensive series on Retrofit.
#### KO
- [꿈 많은 개발자가 되자 - Taehwan](https://thdev.tech/) - Android developer's blog. story.
#### ES
- [DevExperto](https://devexperto.com/) - Blog by Antonio Leiva.
#### ZH
- [wanandroid](https://wanandroid.com/) - Android Blogs.
- [androidperformance](http://androidperformance.com/) - Focused tutorials on Android Performance.
- [cnblogs](https://www.cnblogs.com/cate/android/) - Software Blogs.
- [juejin](https://juejin.im/) - Programming Nuggets.
- [jianshu](https://www.jianshu.com/) - Brief Book.
- [CSDN](https://blog.csdn.net/) - Chinese Software Developer Network.
#### ID
- [codepolitan](https://www.codepolitan.com/) - Learn Coding Now, Develop Your Future.
#### TR
- [Android Yazılım Haberleri | Mobiler.dev](https://www.mobiler.dev/haberlerandroid) - Android Dev news.
### Kotlin language-focused
#### EN
- [Kotlin hands-on](https://play.kotlinlang.org/hands-on/overview) - Tutorials by Kotlin Team.
- [Kotlin examples](https://play.kotlinlang.org/byExample/01_introduction/01_Hello%20world) - Kotlin Code Examples
- [Kotlin Koans](https://play.kotlinlang.org/koans/) - Kotlin Koans is a series of exercises to get you familiar with the Kotlin syntax and some idioms.
- [Kotlin Quick Reference](http://kotlin-quick-reference.com/) - Kotlin Quick Reference is intended to provide a quick reference to the Kotlin programming language. Each chapter in the book demonstrates Kotlin syntax and provides examples to explain the chapter’s topic.
- [Todd Ginsberg](https://todd.ginsberg.com/) - I work mostly in Kotlin and Java, and use Spring Boot extensively.
- [Hadi Hariri](https://hadihariri.com/posts/) - Developer Advocacy at [**JetBrains**](https://twitter.com/JetBrains). Host of [**TalkingKotlin**](https://twitter.com/TalkingKotlin), and an always-newbie guitar player. I do Kotlin. I don't do Android.
- [Kotlin Christmas](https://kotlin.christmas/2020) - Kotlin articles covering language features, popular libraries, learning resources, and many more helpful topics.
- [Guide to Kotlin](https://github.com/Zhuinden/guide-to-kotlin) - This tutorial assumes all you know is Java, but you want to learn Kotlin.
- [KEEP - Kotlin Evolution and Enhancement Process](https://github.com/Kotlin/KEEP/tree/master/proposals/) - This repository holds proposals for the Kotlin Programming Language.
- [kt.academy](https://kt.academy/) - Kotlin Academy.
- [Kotlin Testing](https://kotlintesting.com/) - Everything about testing with Kotlin.
- [From Java to Kotlin](https://fabiomsr.github.io/from-java-to-kotlin/index.html) - From Java to Kotlin by fabiomsr.
- [Kotlin cheatsheet](https://devhints.io/kotlin) - Kotlin cheatsheet by devhints.
- [from-java-to-kotlin](https://github.com/MindorksOpenSource/from-java-to-kotlin) - From Java To Kotlin - Your Cheat Sheet For Java To Kotlin.
- [raywenderlich](https://www.raywenderlich.com/6649-kotlin-cheat-sheet-and-quick-reference) - Kotlin Cheat Sheet and Quick Reference.
- [typealias](https://typealias.com/) - Dave Leeds on Kotlin.
#### ZH
- [Bennyhuo](https://www.bennyhuo.com/) - Bennyhuo Blog.
- [kotlin-in-chinese](https://github.com/huanglizhuo/kotlin-in-chinese) - Kotlin 官方文档翻译 on GitHub.
- [kaixue](https://kaixue.io/) - A guide to Kotlin for Android engineers.
## Podcasts
#### EN
- [Android Leaks](https://androidleakspodcast.com/) - Android podcast in English and French.
- [Now in Android](https://nowinandroid.libsyn.com/) - This show gives listeners a quick run-down on things that the Android team has done recently that developers may want to check out. It covers library and platform releases, articles, videos, podcasts, samples, codelabs - whatever seems relevant and interesting for Android developers. Android's a big platform and there are many things being released all the time; listen to this podcast to stay up to date on what those things are.
- [The Developers' Bakery](https://thebakery.dev/) - A developer podcast about tools, libraries, and productivity. The Developers' Bakery is a place for open-source developers and maintainers to share their experience and projects. A journey through the tools and libraries that help developers worldwide baking great software daily. Join Nicola Corti through this journey among open source and beyond.
- [COFFEE & CODING PODCAST](https://robj.me/coffeeandcoding/) - Listen weekly as we bring you the latest news, tips and in depth discussion with experienced app developers – to help you become better a better app developer.
- [Android Developers Backstage](http://androidbackstage.blogspot.com/) - Android Developers Backstage Podcast.
- [Fragmented](http://fragmentedpodcast.com/) - A Software Developer Podcast hosted by Donn Felker and Kaushik Gopal.
- [Talking Kotlin](https://talkingkotlin.com/) - A Podcast on Kotlin and more.
- [The raywenderlich.com Podcast](https://www.raywenderlich.com/podcast/) - Join Dru and Alex as they discuss every aspect of app development with well-known characters from the iOS and Android development community.
- [Androidiots](https://www.androidiots.in/podcast) - Androidiots Podcast.
#### ES
- [Android Dev Podcast](https://androiddevpodcast.com/) - Android Dev Podcast.
#### RU
- [Подкасты Android Dev](https://androiddev.apptractor.ru/) - Android Dev Podcast.
#### TR
- [Dört Podcast](https://soundcloud.com/dortpodcast) - Android Dev Podcast.
## Newsletters
### Android focused
#### EN
- [StoicallyTyped](https://www.getrevue.co/profile/stoicallytyped) - Weekly bite sized Android news and stoic philosophies for your career in tech, delivered Monday mornings to kick off your week.
- [The Developer Digest](https://thedeveloperdigest.com/) - A handcrafted newsletter to help developers level up in their career.
- [Awesome Android Newsletter](https://android.libhunt.com/newsletter) - A weekly overview of the most popular Android news, articles and packages.
- [Android Weekly](https://androidweekly.net/) - Android Weekly is a free newsletter that helps you to stay cutting-edge with your Android Development.
- [Developer Newsletters](https://developer.android.com/newsletter/) - The latest developer news and tips to help you succeed with Google Play, Android, and games.
- [jetc.dev](https://jetc.dev/) - Jetpack Compose Newsletter.
- [Android Newsletter by Vlad Sonkin](https://vladsonkin.com/android-newsletter/) - Stay up to date with Android Development.
- [onCreate Digest](http://www.oncreatedigest.com/) - onCreate Digest is a weekly newsletter with links to Android Development related content.
- [Android Stack Weekly](https://blog.canopas.com/tagged/canopas-android-weekly) - Android stack is a weekly newsletter on new development and updates of Android universe.
#### JA
- [Android Dagashi](https://androiddagashi.github.io/) - Android Dagashi Newsletter.
#### ZH
- [Android Tech Weekly](https://www.zhihu.com/column/c_1278963991947780096) - Every Monday publishes excellent articles encountered last week.
- [Android 开发技术周报](https://www.androidweekly.io/) - Android Weekly Newsletter for Chinese Developers.
- [Weekly manong](http://weekly.manong.io/) - Professional, simple, useful, is we have always adhered to the purpose of the publication.
### Kotlin language-focused
- [Kotlin Weekly](https://www.kotlinweekly.net/) - Your weekly dose of Kotlin.
## Docs / Other
### Docs
For Jetpack Compose related Docs: [Awesome Jetpack Compose Learning Resources](https://github.com/androiddevnotes/awesome-jetpack-compose-learning-resources)
- [Android Lint API Guide](http://googlesamples.github.io/android-custom-lint-rules/book.md.html)
- [SDK Api Diff](https://developer.android.com/sdk/api_diff/29/changes) - This report details the changes in the core Android framework API between two API Level specifications. It shows additions, modifications, and removals for packages, classes, methods, and fields. The report also includes general statistics that characterize the extent and type of the differences.
- [Android Official Website](https://developer.android.com/) - Android Developer.
- [Kotlin Official Website](https://kotlinlang.org/) - A modern programming language that makes developers happier.
- [Kotlin Slack Chats](https://slack-chats.kotlinlang.org/) - Indexable Kotlin Slack channels
### Other
#### EN
- [Android library statistics | AppBrain](https://www.appbrain.com/stats/libraries) - Android library statistics provides you with insights on what Ad Networks, Social SDKs and developer tools are present in Android apps and what their market shares are.
- [Kotlin is Awesome!](https://kotlin.link/)
- [androidx.dev](https://androidx.dev/) - A web-service to help you discover snapshots and artifacts in builds.
- [Android API Levels](https://apilevels.com/) - A quick reference table of Android versions with SDK & API levels, version codes, codenames, cumulative usage, and more.
- [Android Sitemap](https://github.com/androiddevnotes/android-sitemap) - **Android Sitemap** aims to be your starting point to find every link pointing to Android Developer sites: [Android Developers](https://developer.android.com/) and [Android Open Source Project](https://source.android.com/).
- [androidsrc.dev](https://androidsrc.dev/) - Developers write better apps when they can read the source. Unfortunately, the sources for the Android framework and various Google Android libraries are scattered all over the web.
This page helps Android developers find the sources they're looking for.
- [The Mobile Security Testing Guide (MSTG)](https://github.com/OWASP/owasp-mstg) - Is a comprehensive manual for mobile app security development, testing and reverse engineering.
- [Android Table of Elements](https://www.androidelements.com/) - A Learning Roadmap for Android Developers.
- [AndroidX Tech](https://androidx.tech/) - Here you will find details about all of the artifacts and packages that make up the AndroidX family.
- [ReposHub](https://reposhub.com/android) - A curated list of awesome Android libraries and resources.
- [Android Arsenal](https://android-arsenal.com/) - Android developer portal with tools, libraries, and apps.
- [Awesome Android by LibHunt ](https://android.libhunt.com/) - A curated list of awesome Android packages and resources by LibHunt.
- [Android Ecosystem Cheat Sheet](https://github.com/igorwojda/android-ecosystem-cheat-sheet) - This project maps most important parts of Android-Ecosystem (200+ tools, services, plusings & libraries). This is the most complete and most up to date picture of Android ecosystem you will find on the web. Some technologies are complementary, while others represent alternatives solutions for the same problem.
- [android-review.googlesource.com](https://android-review.googlesource.com/) - Code Review.
- [Android Open Source Project](https://source.android.com/) - Android is an open source operating system for mobile devices and a corresponding open source project led by Google. This site and the Android Open Source Project (AOSP) repository offer the information and source code needed to create custom variants of the Android OS, port devices and accessories to the Android platform, and ensure devices meet the compatibility requirements that keep the Android ecosystem a healthy and stable environment for millions of users.
- [Android Code Search](https://cs.android.com/) - Android Code Search.
- [AndroidXRef](http://androidxref.com/) - Android Source Code.
- [XDA Developers](https://www.xda-developers.com/) - XDA Developers was founded by developers, for developers. It is now a valuable resource for people who want to make the most of their mobile devices, from customizing the look and feel to adding new functionality.
- [GitHub](https://github.com/) - GitHub is how people build software.
- [GitLab](https://gitlab.com/) - All-in-one DevOps meets all-in-one cloud.
- [Bitbucket](https://bitbucket.org/) - Bitbucket is more than just Git code management. Bitbucket gives teams one place to plan projects, collaborate on code, test, and deploy.
- [gitee](https://gitee.com/) - Discover Open Source you love.
- [coding.net](https://coding.net/) - Provides one-stop development collaboration tools to help research and development teams quickly land agile development and DevOps development methods.
- [JetBrains Academy](https://www.jetbrains.com/academy/) - Learn to Program by
Creating Working Applications.
- [Material Design](https://material.io/) - Material is a design system – backed by open-source code – that helps teams build high-quality digital experiences.
- [Android Developer Roadmap 2020](https://github.com/mobile-roadmap/android-developer-roadmap) - Android Developer Roadmap 2020.
- [Gradle distributionUrl versions](https://services.gradle.org/distributions/) - services.gradle.org/distributions/
#### ZH
- [xitu](http://e.xitu.io/) - Open-source Projects.
- [codekk](https://p.codekk.com/) - Open-source Projects.
- [CTOlib](https://www.ctolib.com/android/) - Libraries Collection.
- [androiddevtools](https://www.androiddevtools.cn/) - Android Dev Tools.
## Open-source projects
- [Awesome Android Kotlin Apps](https://github.com/androiddevnotes/awesome-android-kotlin-apps) - A curated list of awesome android kotlin apps by open-source contributors.
- [GitHub Advanced Search](https://docs.github.com/en/github/searching-for-information-on-github/about-searching-on-github) - Use the advanced search on GitHub and find open-source projects to your liking.
## Android and Kotlin Conferences
- [Android Conferences](http://androidstudygroup.github.io/conferences) - List of Android Conferences.
- [Android Dev Summit](https://developer.android.com/dev-summit) - Android Dev Summit.
- [AndroidWorldwide](https://android-worldwide.com/) - Android Worldwide is an international collective of developer communities who like to put on a recurring special event for Android Devs, and related engineering specialties.
- [droidcon](https://www.droidcon.com/) - Droidcon Berlin is where the industry's leading Android experts converge to support the Android platform and create a strong network for developers and companies. Starting with 300 attendees in 2009, we will attract well over 1300+ developers in 2021.
- [QCon Software Conferences](https://qconferences.com/) - Helping senior software developers adopt
new technologies and practices.
- [MOBILE CONF](https://mobileconfth.com/) - The biggest mobile developer conference in Thailand.
- [APPDEVCON CONFERENCE](https://appdevcon.nl/) - BY APP DEVELOPERS, FOR APP DEVELOPERS.
- [KOTLINCONF'20](https://kotlinconf.com/) - A conference about everything Kotlin. Brought to you by JetBrains.
- [GOTO](https://gotober.com/) - GOTO conferences.
- [Øredev Developer Conference](https://oredev.org/) - The best part of Øredev is the one we co-create with you.
- [Codemotion Events](https://events.codemotion.com/) - More than 500 tech events for developers across Europe.
- [DevTernity](https://devternity.com/) - Turning developers into architects and engineering leaders.
- [GOTOpia](https://gotopia.tech/) - GOTO Conferences.
- [Touraine](https://touraine.tech/) - Touraine Tech.
- [MOBOS](http://romobos.com/) - Mobile Operating Systems Conference.
- [Greach](https://greachconf.com/) - Microservices, JVM Frameworks & JVM Langs.
- [Devoxx](https://devoxx.com/) - From developers, For developers.
- [t3chfest](https://t3chfest.es/) - t3chfest.
- [Facebook Developer Conference](https://www.f8.com/) - A conversation about technology and human connection.
- [mdevcamp](https://mdevcamp.eu/) - Virtual 3D conference for mobile developers.
- [DEVit](https://devitconf.org/) - DEVit is the leading web developer conference in South East Europe. Organized once per year, DEVit has become known for its top speaking talent, a mixture of world-class and world-renowned developers, highly specialized technology niches and developers who are on the edge of technology frontiers.
- [DevBreak](https://www.devbreak.io/) - DevBreak is a 2-day tech festival.
- [ADDC](https://addconf.com/) - Single-track international conference for iOS & Android developers and UX/UI designers in Barcelona, Spain.
#### JA
- [DroidKaigi](https://droidkaigi.jp/) - DroidKaigi Conferences.
#### DE
- [MobileTech](https://mobiletechcon.de/) - The conference and training event for mobile development.
#### RU
- [mobius-piter](https://mobius-piter.ru/) - Conference on mobile development.
- [CodeFest O!](https://o.codefest.ru/) - CodeFest O Conferences.
## Communities
#### EN
- [Kotlin Discussions](https://discuss.kotlinlang.org/) - Kotlin Discussions on various topics
- [Stack Overflow](https://stackoverflow.com/) - For Android, Kotlin and general programming Q&A.
- [r/android_devs/](https://www.reddit.com/r/android_devs/) - A place where all Android developers can speak openly and respectfully about the problems they face when developing and publishing applications, give valuable tips, open constructive architectural discussions, discuss the present and future of programming in Android and seek help when specialized sites do not provide solutions.
- [r/androiddev/](https://www.reddit.com/r/androiddev/) - News for Android developers with the who, what, where when and how of the Android community. Probably mostly the how. Here, you'll find: - News for Android developers - Thoughtful, informative articles - Insightful talks and presentations - Useful libraries - Handy tools - Open source applications for studying.
- [Android Dev Discord](https://discord.gg/sNgBNng) - Android Dev Discord.
- [Programming Discussions Discord](http://invite.progdisc.club/) - Programming Discussions Discord.
- [Kotlin Community](https://kotlinlang.org/community/) - Kotlin Slack Community.