├── .gitignore ├── LICENSE ├── README.md ├── social-icons ├── github.png ├── google-plus.ico ├── linkedin.png ├── medium.ico ├── play-store.ico └── twitter.png └── subscriptions.xml /.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the ART/Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | out/ 15 | 16 | # Gradle files 17 | .gradle/ 18 | build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | 29 | # Android Studio Navigation editor temp files 30 | .navigation/ 31 | 32 | # Android Studio captures folder 33 | captures/ 34 | 35 | # Intellij 36 | *.iml 37 | .idea 38 | 39 | # Keystore files 40 | *.jks 41 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Hey, WELCOME! :pray: 2 | Below you will find all those Android development sources that you need to be and stay awesome! 3 | 4 | ' :heart: ' **THE FOCUS IS ON KOTLIN** ' :heart: ' 5 | 6 | Since Google announced support for Kotlin you will be finding more and more sources that focus around Kotlin. 7 | 8 | ## OPML 9 | Don't forget to check out the OPML subscriptions file included in this project (*[subscriptions.xml](https://github.com/ParaskP7/android-dev-sources/blob/master/subscriptions.xml)*). This will make it very easy for you to import all this amazing feeds into your favorite RSS reader. 10 | 11 | :+1: **JUST DO IT!** :+1: 12 | 13 | Keep up to date with the latest and greatest in Android. 14 | 15 | # Android DEV Sources 16 | | Category | Title | URL | 17 | | ------------- | ------------- | ------------- | 18 | | Apps | | | 19 | | | Inoreader - News Reader & RSS | https://play.google.com/store/apps/details?id=com.innologica.inoreader | 20 | | | Reddit: The Official App | https://play.google.com/store/apps/details?id=com.reddit.frontpage | 21 | | | Player FM - Podcast Offline | https://play.google.com/store/apps/details?id=fm.player | 22 | | | Playbook for Developers | https://play.google.com/store/apps/details?id=com.google.android.apps.secrets | 23 | | RSS and News Aggregators | | | 24 | | | Inoreader | https://www.inoreader.com | 25 | | | Reddit - Kotlin | https://www.reddit.com/r/Kotlin | 26 | | | Reddit - Android | https://www.reddit.com/r/androiddev | 27 | | Podcasts | | | 28 | | | Android Snacks | https://androidsnacks.wordpress.com | 29 | | | Talking Kotlin | http://talkingkotlin.com | 30 | | | Fragmented | http://fragmentedpodcast.com | 31 | | | Android Developers Backstage | http://androidbackstage.blogspot.de | 32 | | | The Context #androiddev | https://github.com/artem-zinnatullin/TheContext-Podcast | 33 | | | Native Wheelhouse | https://nativewheel.house | 34 | | Websites/Subscriptions | | | 35 | | | Kotlin Weekly | http://www.kotlinweekly.net | 36 | | | Android Weekly | http://androidweekly.net | 37 | | | Android Dev Digest | https://www.androiddevdigest.com | 38 | | | InfoQ | https://www.infoq.com/android | 39 | | | JournalDev | http://www.journaldev.com | 40 | | Courses/Presentations/Tutorials | | | 41 | | | Caster IO | https://caster.io/courses | 42 | | | Udacity | https://www.udacity.com/courses/android | 43 | | | Envato Tuts Plus | https://code.tutsplus.com/categories/android/courses | 44 | | | Speaker Deck | https://speakerdeck.com | 45 | | | Android Hive | https://www.androidhive.info | 46 | | | Vogella | http://www.vogella.com/tutorials/android.html | 47 | | | Ray Wenderlich | https://www.raywenderlich.com/category/android | 48 | | Android | Design | | 49 | | | Android Design Patterns | http://www.androiddesignpatterns.com | 50 | | | UpLabs Material | https://www.uplabs.com/material | 51 | | | Android Niceties | http://androidniceties.tumblr.com | 52 | | | Android UI Patterns | http://www.androiduipatterns.com | 53 | | Android | Marketing | | 54 | | | Weeby Network | https://weebynetwork.com/blog | 55 | | Android | Libraries | | 56 | | | Android Arsenal | http://android-arsenal.com | 57 | | | Kotlin Resources | https://www.kotlinresources.com/tag/android | 58 | | Blogs | Grandmasters | | 59 | | | The Clean Code | http://blog.cleancoder.com | 60 | | | Martin Fowler | https://martinfowler.com | 61 | | Blogs | Kotlin | | 62 | | | JetBrains | https://blog.jetbrains.com/kotlin | 63 | | | Super Kotlin | https://superkotlin.com | 64 | | | Kotlin Development | https://www.kotlindevelopment.com | 65 | | | Hadi Hariri | http://hadihariri.com | 66 | | | Antonio Leiva | https://antonioleiva.com/category/blog | 67 | | | Jim Baca | http://blog.jimbaca.com | 68 | | | Simon Wirtz | https://blog.simon-wirtz.de | 69 | | | Tonic Artos | http://www.tonicartos.nz | 70 | | | Philipp Hauer | https://blog.philipphauer.de | 71 | | Blogs | Reactive | | 72 | | | Advanced Reactive Java | http://akarnokd.blogspot.de | 73 | | Blogs | Developers | | 74 | | | Jake Wharton | http://jakewharton.com | 75 | | | Donn Felker | http://www.donnfelker.com | 76 | | | Kaushik Gopal | http://blog.kaush.co | 77 | | | Mark Allison | https://blog.stylingandroid.com | 78 | | | Hannes Dorfmann | http://hannesdorfmann.com | 79 | | | Dan Lew Codes | http://blog.danlew.net | 80 | | | Chiu-Ki Chan | http://blog.sqisland.com | 81 | | | Chris Banes | https://chris.banes.me | 82 | | | Rebecca Franks | https://riggaroo.co.za | 83 | | | Zarah Dominguez | http://zdominguez.com | 84 | | | Elif Boncuk | https://elifboncuk.com | 85 | | | Annyce Davis | http://adavis.info | 86 | | | Huyen Dao | http://www.randomlytyping.com/about | 87 | | | Lisa Wray | http://www.xwray.com | 88 | | | Daichi Furiya | https://wasabeef.jp | 89 | | | Scott Alexander-Bown | https://scottyab.com | 90 | | | Cyril Mottier | https://cyrilmottier.com | 91 | | | Corey Latislaw | http://coreylatislaw.com/category/mobile | 92 | | | Wolfram Rittmeyer | http://www.grokkingandroid.com | 93 | | | Zarah Dominguez | http://www.zdominguez.com | 94 | | | Fernando Cejas | https://fernandocejas.com | 95 | | | Kelly Shuster | http://www.kiodev.com | 96 | | | Michael Evans | http://michaelevans.org | 97 | | | Michał Łuszczuk | http://blog.propaneapps.com | 98 | | | Ryan Harter | http://ryanharter.com | 99 | | Blogs | Medium | | 100 | | | Google Developers | https://medium.com/google-developers | 101 | | | Square Corner | https://medium.com/square-corner-blog | 102 | | | Pro Android Dev | https://proandroiddev.com | 103 | | | Android DEV | https://medium.com/tag/androiddev | 104 | | | Android Pub | https://android.jlelse.eu | 105 | | | Android Friendly | https://android.i-visionblog.com | 106 | | | Fueled Android | https://medium.com/fueled-android | 107 | | | Heetch Engineering | https://eng.heetch.com | 108 | | | Mobile Engineering | https://medium.com/mobile-engineering | 109 | | | Chet Haase | https://medium.com/@chethaase | 110 | | | Florina Muntenescu | https://medium.com/@florina.muntenescu | 111 | | | George Mount | https://medium.com/@georgemount007 | 112 | | | NitinKumar Gove | https://medium.com/@nitinkumargove | 113 | | | Patryk Poborca | https://medium.com/@patrykpoborca | 114 | | | César Ferreira | https://medium.com/@cesarmcferreira | 115 | | | Sebastiano Poggi | https://medium.com/@seebrock3r | 116 | | | Sebastiano Gottardo | https://medium.com/@rotxed | 117 | | | Aritra Roy | https://blog.aritraroy.in | 118 | | Blogs | Google | | 119 | | | Google Developers | https://developers.googleblog.com | 120 | | | Android Developers | https://android-developers.googleblog.com | 121 | | Blogs | Companies | | 122 | | | JetBrains | https://blog.jetbrains.com/idea | 123 | | | Realm | https://realm.io/news | 124 | | | Genymotion | https://www.genymotion.com/blog | 125 | | | CommonsWare | https://commonsware.com/blog | 126 | | | Yalantis | https://yalantis.com/blog | 127 | | | Philosophical Hacker | https://www.philosophicalhacker.com | 128 | | | Big Nerd Ranch | https://www.bignerdranch.com/blog/categories/android | 129 | | | Software Engineering Hipster | https://artemzin.com/blog | 130 | | | The Cheese Factory | https://inthecheesefactory.com/blog | 131 | | | Mindorks | https://blog.mindorks.com | 132 | | | Novoda | https://www.novoda.com/blog | 133 | | | Babylon Health | https://blog.babylonhealth.com | 134 | | Blogs | Other | | 135 | | | TechBeacon | https://techbeacon.com/mobile | 136 | | | Mike Cohn | https://www.mountaingoatsoftware.com/blog | 137 | | | Coding Horror | https://blog.codinghorror.com | 138 | | | Base Lab | https://lab.getbase.com/category/engineering | 139 | | | Hyde | http://hyde.getpoole.com | 140 | | Twitter | Follow | | 141 | | | Google Developers Experts | https://developers.google.com/experts | 142 | | | Jake Wharton | https://twitter.com/JakeWharton | 143 | | | Donn Felker | https://twitter.com/donnfelker | 144 | | | Kaushik Gopal | https://twitter.com/kaushikgopal | 145 | | | Chet Haase | https://twitter.com/chethaase | 146 | | | Tor Norbye | https://twitter.com/tornorbye | 147 | | | Genymotion | https://twitter.com/Genymotion | 148 | | | Websites/Subscriptions | (see relevant section) | 149 | | | Courses/Presentations/Tutorials | (see relevant section) | 150 | | | Blogs | (see relevant section) | 151 | | | YouTube Channels | (see relevant section) | 152 | | | Community/Meetups | (see relevant section) | 153 | | YouTube | Channels | | 154 | | | Android Developers | https://www.youtube.com/user/androiddevelopers | 155 | | | Android Dialogs | https://www.youtube.com/channel/UCMEmNnHT69aZuaOrE-dF6ug | 156 | | | Google Developers | https://www.youtube.com/user/GoogleDevelopers | 157 | | | Firebase | https://www.youtube.com/user/Firebase | 158 | | | JetBrainsTV | https://www.youtube.com/user/JetBrainsTV | 159 | | | SquareEngineering | https://www.youtube.com/user/SquareEngineering | 160 | | | Square Island | https://www.youtube.com/channel/UCtdDoUTSw0tkvtro98Xu35g | 161 | | | Touchlab | https://www.youtube.com/channel/UC_LIW0OUdsRI21D0xnWkexw | 162 | | | Slidenerd | https://www.youtube.com/user/slidenerd | 163 | | YouTube | Search & Find | | 164 | | | [Google IO Android](https://www.youtube.com/playlist?list=PLWz5rJ2EKKc-odHd6XEaf7ykfsosYyCKp) | | 165 | | | [Firebase IO Android](https://www.youtube.com/playlist?list=PLl-K7zZEsYLma7gxYxtEwO1rsAPn7wkV_) | | 166 | | | Droidcon | | 167 | | | Android Dev Summit | | 168 | | Community/Conferences | | | 169 | | | GitHub | https://github.com/AndroidStudyGroup/conferences | 170 | | Community/Meetups | | | 171 | | | All Android Meetups | https://www.meetup.com/topics/android/all | 172 | | | All Android Development Meetups | https://www.meetup.com/topics/android-developers/all | 173 | | Community/Meetups | San Francisco & Silicon Valley | | 174 | | | Bay Area Kotlin User Group | https://www.meetup.com/Bay-Area-Kotlin-User-Group | 175 | | | The San Francisco & Silicon Valley Android Developers | https://www.meetup.com/svandroid | 176 | | | The San Francisco Android User Group | https://www.meetup.com/sfandroid | 177 | | | GDG San Francisco | https://www.meetup.com/google-developer-group-san-francisco | 178 | | Community/Meetups | London | | 179 | | | GDG London | http://www.gdg-london.com | 180 | | | Kotlin London | https://www.meetup.com/kotlin-london | 181 | | | The London Android Group | https://www.meetup.com/android | 182 | | Community/Meetups | Berlin | | 183 | | | Berlin Android | http://berlindroid.de | 184 | | | Berlin Kotlin User Group | https://www.meetup.com/GDG-Berlin-Android | 185 | | | GDG Berlin Android | https://www.meetup.com/GDG-Berlin-Android | 186 | | | GDG Berlin | https://www.meetup.com/gdgberlin | 187 | | Community/Meetups | Athens | | 188 | | | GDG Android Athens | https://www.meetup.com/GDG-Android-Athens | 189 | | Slack | Join | | 190 | | | Kotlin Language | kotlinlang.slack.com | 191 | | | Android United | android-united.slack.com | 192 | | | Android Chat | androidchat.slack.com | 193 | | | Firebase Community | firebase-community.slack.com | 194 | | | Spec Network | specnetwork.slack.com | 195 | | Slack | Local Community | | 196 | | | ADG Berlin | adg-berlin.slack.com | 197 | | | Android Dev Brazil | androiddevbr.slack.com | 198 | | | Greek Android Developers | gdgandroidathens.slack.com | 199 | | Previews/EAP | | | 200 | | | Android O | https://developer.android.com/preview/index.html | 201 | | | Android Studio 3.0 | https://developer.android.com/studio/preview/index.html | 202 | | | Kotlin 1.1.4 EAP | https://discuss.kotlinlang.org/t/kotlin-1-1-4-eap/3721 | 203 | | | Kotlin 1.2 EAP | https://blog.jetbrains.com/kotlin/2017/06/early-access-program-for-kotlin-1-2-has-been-started | 204 | | GitHub Projects | Kotlin | | 205 | | | What's Trending in Kotlin | https://github.com/trending/kotlin | 206 | | | Awesome Kotlin | https://github.com/KotlinBy/awesome-kotlin | 207 | | | Kotlin Koans | https://github.com/Kotlin/kotlin-koans | 208 | | | Design Patterns In Kotlin | https://github.com/dbacinski/Design-Patterns-In-Kotlin | 209 | | | Bandhook Kotlin | https://github.com/antoniolg/Bandhook-Kotlin | 210 | | | KEEP | https://github.com/Kotlin/KEEP | 211 | | | Kotlin Coroutines | https://github.com/Kotlin/kotlin-coroutines | 212 | | | Idiomatic Kotlin | https://github.com/yole/idiomatic-kotlin | 213 | | | Clean Architecture | https://github.com/bufferapp/android-clean-architecture-boilerplate | 214 | | GitHub Projects | Android | | 215 | | | What's Trending in Java & Android | https://github.com/trending/java | 216 | | | Awesome Lists | https://github.com/sindresorhus/awesome | 217 | | | Awesome Java | https://github.com/akullpp/awesome-java | 218 | | | Awesome Android | https://github.com/JStumpp/awesome-android | 219 | | | Awesome RxJava | https://github.com/eleventigers/awesome-rxjava | 220 | | | Awesome UI/UX | https://github.com/wasabeef/awesome-android-ui | 221 | | | Awesome Material Design | https://github.com/sachin1092/awesome-material | 222 | | | Awesome Android Things | https://github.com/amitshekhariitbhu/awesome-android-things | 223 | | | Android Guides | https://github.com/aritraroy/UltimateAndroidReference | 224 | | | Android Guides | https://github.com/codepath/android_guides/wiki | 225 | | | Android Guides | https://github.com/ribot/android-guidelines | 226 | | | Best Practices | https://github.com/futurice/android-best-practices | 227 | | | Architecture | https://github.com/googlesamples/android-architecture | 228 | | | Architecture Components | https://github.com/googlesamples/android-architecture-components | 229 | | | Clean Architecture | https://github.com/android10/Android-CleanArchitecture | 230 | | | MVP | https://github.com/sockeqwe/mosby | 231 | | | RxJava | https://github.com/kaushikgopal/RxJava-Android-Samples | 232 | | | RxJava | https://github.com/amitshekhariitbhu/RxJava2-Android-Samples | 233 | | | Dagger | https://github.com/JakeWharton/u2020 | 234 | | | Testing | https://github.com/googlesamples/android-testing | 235 | | | Quality | https://github.com/artem-zinnatullin/qualitymatters | 236 | | | Material Design | https://github.com/nickbutcher/plaid | 237 | | | Util Code | https://github.com/Blankj/AndroidUtilCode | 238 | | | Put It All Together | https://github.com/athkalia/Just-Another-Android-App | 239 | | | Android Development Blogs | https://github.com/ziem/android-development-blogs | 240 | | One Library Per Month | Kotlin | | 241 | | | Anko | https://github.com/Kotlin/anko | 242 | | | RxKotlin | https://github.com/ReactiveX/RxKotlin | 243 | | | Kodein | https://github.com/SalomonBrys/Kodein | 244 | | | Kotlin Coroutines| https://github.com/Kotlin/kotlinx.coroutines | 245 | | | KotterKnife | https://github.com/JakeWharton/kotterknife | 246 | | | SQLDelight | https://github.com/square/sqldelight | 247 | | | Kotlin Koi | https://github.com/mcxiaoke/kotlin-koi | 248 | | | AsyncAwait | https://github.com/metalabdesign/AsyncAwait | 249 | | | Exposed | https://github.com/JetBrains/Exposed | 250 | | One Library Per Month | Android | | 251 | | | Android Architecture Components | https://developer.android.com/topic/libraries/architecture/index.html | 252 | | | Firebase Realtime Database | https://firebase.google.com/docs/database | 253 | | | DataBinding | https://developer.android.com/topic/libraries/data-binding/index.html | 254 | | | RxJava | https://github.com/ReactiveX/RxJava | 255 | | | Dagger | https://github.com/google/dagger | 256 | | | ButterKnife | https://github.com/JakeWharton/butterknife | 257 | | | AndroidAnnotations | https://github.com/androidannotations/androidannotations | 258 | | | Retrofit | https://github.com/square/retrofit | 259 | | | Realm | https://github.com/realm/realm-java | 260 | | | SQLBrite | https://github.com/square/sqlbrite | 261 | | | Glide | https://github.com/bumptech/glide | 262 | | | Picasso | https://github.com/square/picasso | 263 | | | Fresco | https://github.com/facebook/fresco | 264 | | | Stetho | https://github.com/facebook/stetho | 265 | | | LeakCanary | https://github.com/square/leakcanary | 266 | | | AutoValue | https://github.com/google/auto | 267 | | | Parceler | https://github.com/johncarl81/parceler | 268 | | | PermissionsDispatcher | https://github.com/hotchemi/PermissionsDispatcher | 269 | | | Shortbread | https://github.com/MatthiasRobbers/shortbread | 270 | | | ConstraintLayout | https://github.com/ConstraintLayout/constraintlayout.github.io | 271 | | | Lottie | https://github.com/airbnb/lottie-android | 272 | | | Timber | https://github.com/JakeWharton/timber | 273 | | | Hugo | https://github.com/JakeWharton/hugo | 274 | | | JobDispatcher | https://github.com/firebase/firebase-jobdispatcher-android | 275 | | | WilliamChart | https://github.com/diogobernardino/WilliamChart | 276 | | One Library Per Month | Gradle Plugin | | 277 | | | Gradle Versions Plugin | https://github.com/ben-manes/gradle-versions-plugin | 278 | | | Dexcount Gradle Plugin | https://github.com/KeepSafe/dexcount-gradle-plugin | 279 | | One Library Per Month | Static Analysis | | 280 | | | Lint | https://developer.android.com/studio/write/lint.html | 281 | | | Detekt | https://github.com/arturbosch/detekt | 282 | | | Checkstyle | https://github.com/checkstyle/checkstyle | 283 | | | PMD | https://pmd.github.io | 284 | | | Findbugs | http://findbugs.sourceforge.net | 285 | | One Library Per Month | Testing | | 286 | | | Spek | https://github.com/JetBrains/spek | 287 | | | Espresso | https://developer.android.com/training/testing/espresso/index.html | 288 | | | JUnit | https://github.com/junit-team/junit4 | 289 | | | AssertJ | https://github.com/joel-costigliola/assertj-core | 290 | | | Mockito | https://github.com/mockito/mockito | 291 | | | Robolectric | https://github.com/robolectric/robolectric | 292 | | | Jacoco | https://github.com/jacoco/jacoco | 293 | | | Spoon | https://github.com/square/spoon | 294 | | | Composer | https://github.com/gojuno/composer | 295 | | One Platform Per Quarter | All in One | | 296 | | | Firebase | https://firebase.google.com | 297 | | | Fabric | https://get.fabric.io | 298 | | | Realm | https://realm.io/products/realm-mobile-platform | 299 | | One Platform Per Quarter | Crash Reporting | | 300 | | | HockeyApp | https://hockeyapp.net | 301 | | | Instabug | https://instabug.com | 302 | | | Bugsnag | https://www.bugsnag.com | 303 | | One Platform Per Quarter | Tracking | | 304 | | | Mixpanel | https://mixpanel.com | 305 | | | Countly | https://count.ly | 306 | | | CleverTap | https://clevertap.com | 307 | | One Language Per Year | | | 308 | | | Kotlin | https://kotlinlang.org | 309 | | | JavaScript | https://www.javascript.com | 310 | | | C# | https://msdn.microsoft.com/en-us/library/a72418yk.aspx | 311 | | | Swift | https://swift.org | 312 | | Books | [Robert Martin (Uncle Bob)](http://blog.cleancoder.com) | | 313 | | | Clean Architecture | [Vimeo](https://vimeo.com/43612849) | 314 | | | Clean Code | [Amazon](https://www.amazon.de/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882) | 315 | | | Clean Coder | [Amazon](https://www.amazon.de/Clean-Coder-Conduct-Professional-Programmers/dp/0137081073) | 316 | | Books | Kent Beck | | 317 | | | Test-Driven Development by Example | [Amazon](https://www.amazon.de/Test-Driven-Development-Addison-Wesley-Signature/dp/0321146530) | 318 | | | Implementation Patterns | [Amazon](https://www.amazon.de/Implementation-Patterns-Kent-Beck/dp/0321413091) | 319 | | Books | [Martin Fowler](https://martinfowler.com) | | 320 | | | Refactoring: Improving the Design of Existing Code | [Amazon](https://www.amazon.de/Refactoring-Improving-Design-Existing-Technology/dp/0201485672) | 321 | | | Patterns of Enterprise Application Architecture | [Amazon](https://www.amazon.de/Patterns-Enterprise-Application-Architecture-Martin/dp/0321127420) | 322 | | Books | Joshua Bloch | | 323 | | | Effective Java | [Amazon](https://www.amazon.de/Effective-Java-2nd-Programming-Language/dp/0321356683) | 324 | | | Java Puzzlers |[Amazon](https://www.amazon.de/Java-Puzzlers-Traps-Pitfalls-Corner/dp/032133678X) | 325 | | Books | [Design Patterns](https://github.com/iluwatar/java-design-patterns) | | 326 | | | Design Patterns: Elements of Reusable Object-Oriented Software | [Amazon](https://www.amazon.de/Patterns-Elements-Reusable-Object-Oriented-Software/dp/0201633612/ref=sr_1_1?ie=UTF8&qid=1499522156&sr=8-1&keywords=Design+Patterns%3A+Elements+of+Reusable+Object-Oriented+Software) | 327 | | | Head First Design Patterns | [Amazon](https://www.amazon.de/Head-First-Design-Patterns-Freeman/dp/0596007124/ref=sr_1_1?ie=UTF8&qid=1499522235&sr=8-1&keywords=Head+First+Design+Patterns) | 328 | | Books | Refactoring | | 329 | | | Working Effectively with Legacy Code | [Amazon](https://www.amazon.de/Working-Effectively-Legacy-Robert-Martin/dp/0131177052/ref=sr_1_1?ie=UTF8&qid=1499522250&sr=8-1&keywords=Working+Effectively+with+Legacy+Code) | 330 | | | The Mikado Method | [Amazon](https://www.amazon.de/Mikado-Method-Ola-Ellnestam/dp/1617291218/ref=sr_1_1?ie=UTF8&qid=1499522274&sr=8-1&keywords=The+Mikado+Method) | 331 | | Books | Testing | | 332 | | | Test-Driven Development by Example | [Amazon](https://www.amazon.de/Test-Driven-Development-Addison-Wesley-Signature/dp/0321146530) | 333 | | | xUnit Test Patterns: Refactoring Test Code| [Amazon](https://www.amazon.com/xUnit-Test-Patterns-Refactoring-Code/dp/0131495054/ref=sr_1_1?s=books&ie=UTF8&qid=1499457406&sr=1-1&keywords=xunit+test+patterns) | 334 | | Books | Other | | 335 | | | Coders at Work: Reflections on the Craft of Programming | [Amazon](https://www.amazon.com/Coders-Work-Reflections-Craft-Programming/dp/1430219483/ref=sr_1_1?s=books&ie=UTF8&qid=1499457443&sr=1-1&keywords=coders+at+work) | 336 | | | The Pragmatic Programmer: From Journeyman to Master | [Amazon](https://www.amazon.com/Pragmatic-Programmer-Journeyman-Master/dp/020161622X/ref=sr_1_1?s=books&ie=UTF8&qid=1499457763&sr=1-1&keywords=pragmatic+programmer) | 337 | | | Soft Skills: The software developer's life manual | [Amazon](https://www.amazon.com/Soft-Skills-software-developers-manual/dp/1617292397/ref=sr_1_1?s=books&ie=UTF8&qid=1499457831&sr=1-1&keywords=soft+skills+the+software+developer%27s+life+manual) | 338 | | Books | [Kotlin](https://kotlinlang.org/docs/books.html) | | 339 | | | Kotlin in Action | [Amazon](https://www.amazon.de/Kotlin-Action-Dmitry-Jemerov/dp/1617293296) | 340 | | | Kotlin for Android Developers | [Antonio Leiva](https://antonioleiva.com/kotlin-android-developers-book) | 341 | | Books | Android | | 342 | | | The Busy Coder's Guide to Android Development | [CommonsWare](https://commonsware.com/Android) | 343 | | | Android Programming: The Big Nerd Ranch Guide | [Big Nerd Ranch](https://www.bignerdranch.com/books/android-programming) | 344 | | Books | RxJava | | 345 | | | Reactive Programming with RxJava | [Amazon](https://www.amazon.com/Reactive-Programming-RxJava-Asynchronous-Applications/dp/1491931655) | 346 | | Books | GitHub | | 347 | | | List of Free Learning Resources | https://github.com/EbookFoundation/free-programming-books | 348 | | | List of Free Software Testing Resources | https://github.com/ligurio/free-software-testing-books | 349 | | Productivity | Android Studio | | 350 | | | Android Studio Plugins | https://github.com/balsikandar/Android-Studio-Plugins | 351 | | | Key Promoter | Android Studio Plugin | 352 | | | ADB Idea | Android Studio Plugin | 353 | | | ADB WiFi Connect | Android Studio Plugin | 354 | | | Ace Jump | Android Studio Plugin | 355 | | | Android Studio for Experts | https://medium.com/@shemag8/android-studio-for-experts-cheat-sheet-efe892703d97#.fqwwmsifm | 356 | | | Android Studio Like a Pro | https://stanfy.com/blog/use-android-studio-like-a-pro | 357 | | | GDE Philippe Breault discusses Tinkering with Android Studio (Part I) | http://fragmentedpodcast.com/episodes/055 | 358 | | | GDE Philippe Breault on tinkering with Android Studio (Part II) | http://fragmentedpodcast.com/episodes/056 | 359 | | | Android Studio Tips by Philippe Breault | https://github.com/pavlospt/Android-Studio-Tips-by-Philippe-Breault | 360 | | Productivity | Techniques | | 361 | | | Hadi Hariri - Mouseless Driven Development | https://vimeo.com/98922030 | 362 | | | Pomodoro Technique | https://cirillocompany.de/pages/pomodoro-technique | 363 | | Productivity | Tips | | 364 | | | Android Tips and Tricks | https://github.com/nisrulz/android-tips-tricks | 365 | | | Java Code Styles (by Square and Jake Wharton) | https://github.com/square/java-code-styles | 366 | | | {dev} tips | https://tips.seebrock3r.me | 367 | | | AndroidDev tips and tricks from 2016 | http://fragmentedpodcast.com/episodes/048 | 368 | | | Tips and tricks we picked from 2015 | http://fragmentedpodcast.com/episodes/28 | 369 | | | Talking TextView with Elliott Chenger - Performance | http://fragmentedpodcast.com/episodes/39 | 370 | | | How to become a better Android developer: 30+ bite-sized pro tips | https://techbeacon.com/how-become-better-android-developer-30-bite-sized-pro-tips | 371 | | | 30+ Kickass Tools to Develop Android Apps Like a Pro | https://blog.aritraroy.in/30-kickass-tools-to-develop-android-apps-like-a-pro-191e52b9419b | 372 | | | 30+ Bite-Sized Pro Tips to Become a Better Android Developer | https://blog.aritraroy.in/30-bite-sized-pro-tips-to-become-a-better-android-developer-b311fd641089 | 373 | | Productivity | Getting Started | | 374 | | | Resources for Getting Started with Modern Android Development | https://riggaroo.co.za/resources-getting-started-android-development | 375 | | Productivity | Interviews | | 376 | | | Android Interview Questions | https://github.com/MindorksOpenSource/android-interview-questions | 377 | | | The top Internet companies android interview questions and answers | https://github.com/JackyAndroid/AndroidInterview-Q-A | 378 | 379 | ### Contributing guidelines 380 | 381 | If you would like to add a new entry to the list, create a new issue using template below: 382 | 383 | **Category:** Lorem ipsum 384 | **Title:** Lorem ipsum 385 | **URL:** http://example.com 386 | 387 | As an issue title use `Add http://example.com`. 388 | 389 | ### Found this project useful? 390 | If you found this project useful, then please consider giving it a :star: on GitHub and sharing it with your friends via social media. 391 | 392 | # PS 393 | I would really love some feedback on this list I've created and more so would love your contribution to this list as I am sure I might be forgetting other important and equally powerful Android dev sources that our community can benefit from... 394 | 395 | **ENJOY YOU** 396 | 397 | ## Project Maintained By 398 | 399 | ### Petros Paraskevopoulos 400 | 401 | Passionate Android Advocate. 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | ## License 411 | 412 | ``` 413 | Copyright 2017 ParaskP7 414 | 415 | Licensed under the Apache License, Version 2.0 (the "License"); 416 | you may not use this file except in compliance with the License. 417 | You may obtain a copy of the License at 418 | 419 | http://www.apache.org/licenses/LICENSE-2.0 420 | 421 | Unless required by applicable law or agreed to in writing, software 422 | distributed under the License is distributed on an "AS IS" BASIS, 423 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 424 | See the License for the specific language governing permissions and 425 | limitations under the License. 426 | -------------------------------------------------------------------------------- /social-icons/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaskP7/android-dev-sources/f7d28d6e0154a0ca9e7386ddfeabdf07436be665/social-icons/github.png -------------------------------------------------------------------------------- /social-icons/google-plus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaskP7/android-dev-sources/f7d28d6e0154a0ca9e7386ddfeabdf07436be665/social-icons/google-plus.ico -------------------------------------------------------------------------------- /social-icons/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaskP7/android-dev-sources/f7d28d6e0154a0ca9e7386ddfeabdf07436be665/social-icons/linkedin.png -------------------------------------------------------------------------------- /social-icons/medium.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaskP7/android-dev-sources/f7d28d6e0154a0ca9e7386ddfeabdf07436be665/social-icons/medium.ico -------------------------------------------------------------------------------- /social-icons/play-store.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaskP7/android-dev-sources/f7d28d6e0154a0ca9e7386ddfeabdf07436be665/social-icons/play-store.ico -------------------------------------------------------------------------------- /social-icons/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaskP7/android-dev-sources/f7d28d6e0154a0ca9e7386ddfeabdf07436be665/social-icons/twitter.png -------------------------------------------------------------------------------- /subscriptions.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Subscriptions of petros.g.paraskevopoulos from Inoreader [http://www.inoreader.com] 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 | --------------------------------------------------------------------------------