diff --git a/components/roadmap-summary/index.js b/components/roadmap-summary/index.js index 4b11e9fe5..0a3a535d8 100644 --- a/components/roadmap-summary/index.js +++ b/components/roadmap-summary/index.js @@ -1,4 +1,5 @@ import { Summary, SummaryContainer, UpcomingContainer } from './style'; +import classNames from 'classnames'; import GuideBody from 'components/guide-body'; import RoadmapHeader from 'components/roadmap-header'; import SharePage from 'components/share-page'; @@ -22,7 +23,7 @@ const RoadmapSummary = ({ roadmap }) => { return ( - + diff --git a/components/site-nav/index.js b/components/site-nav/index.js index db44bd495..f3f084552 100644 --- a/components/site-nav/index.js +++ b/components/site-nav/index.js @@ -11,7 +11,6 @@ const SiteNav = () => (
Roadmaps Guides - Sponsors FAQ Subscribe
diff --git a/content/roadmaps.json b/content/roadmaps.json index f237b4cf5..e97a9dba3 100644 --- a/content/roadmaps.json +++ b/content/roadmaps.json @@ -133,6 +133,45 @@ "url": "/devops", "sidebar": {} }, + { + "seo": { + "title": "Android Developer Roadmap: Learn to become an Android developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for android development. Learn to become a modern Android developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming an android developer", + "android developer roadmap", + "android roadmap", + "become android developer", + "android developer skills", + "android skills test", + "skills for android development", + "learn android development", + "what is android", + "android quiz", + "android interview questions" + ] + }, + "title": "Android Developer", + "description": "Step by step guide to becoming an Android developer", + "featuredDescription": "Step by step guide to becoming a modern Android Developer in 2020", + "isTextHeavy": true, + "featured": true, + "path": "/roadmaps/4-android/landscape.md", + "resources": "/roadmaps/4-android/resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + }, + "contributorsCount": 0, + "contributorsUrl": "/android/contributors", + "url": "/android", + "sidebar": {} + }, { "seo": { "title": "Fullstack Roadmap: Learn to become a fullstack developer", @@ -164,14 +203,14 @@ "title": "Full Stack Developer", "description": "Step by step guide to becoming a modern fullstack developer in 2020", "featuredDescription": "Step by step guide to becoming a modern fullstack developer in 2020", - "path": "/roadmaps/4-fullstack/landscape.md", - "resources": "/roadmaps/4-fullstack/resources.md", + "path": "/roadmaps/5-fullstack/landscape.md", + "resources": "/roadmaps/5-fullstack/resources.md", "upcoming": true, "author": { "name": "Kamran Ahmed", "url": "https://twitter.com/kamranahmedse" }, - "contributorsCount": 1, + "contributorsCount": 0, "contributorsUrl": "/fullstack/contributors", "url": "/fullstack", "sidebar": {} @@ -199,13 +238,13 @@ "description": "Steps to follow in order to become a modern QA Engineer in 2020", "featuredDescription": "Step by step guide to becoming a modern QA Engineer in 2020", "upcoming": true, - "path": "/roadmaps/5-qa/landscape.md", - "resources": "/roadmaps/5-qa/resources.md", + "path": "/roadmaps/6-qa/landscape.md", + "resources": "/roadmaps/6-qa/resources.md", "author": { "name": "Anas Fitiani", "url": "https://github.com/anas-qa" }, - "contributorsCount": 1, + "contributorsCount": 0, "contributorsUrl": "/qa/contributors", "url": "/qa", "sidebar": {} diff --git a/content/roadmaps/4-android/landscape.md b/content/roadmaps/4-android/landscape.md new file mode 100644 index 000000000..bb248eb89 --- /dev/null +++ b/content/roadmaps/4-android/landscape.md @@ -0,0 +1,73 @@ +The intent of this guide is to give you an idea about the Android development landscape and to help guide your learning if you are confused. Before we start, please note that the roadmap is opinionated, and you might have different opinions than those of the author. Having said that, [we would love to hear your opinions](https://github.com/kamranahmedse/roadmap.sh/issues/new) and incorporate them in the roadmap if suitable. + +There are multiple ways to develop applications for the android; you can go down the path of hybrid application development where [flutter](https://flutter.dev/), [react-native](https://reactnative.dev/), or [NativeScript](https://www.nativescript.org/) are the most common contenders. Flutter uses Dart, whereas React Native and Native Script rely on JavaScript. Answering the question of hybrid vs native is out of the scope of this roadmap. This roadmap is focused on the native Android apps development but if you are interested in learning any hybrid framework, my personal preference is [react-native](https://reactnative.dev) and I would recommend you to checkout the [Frontend Developer Roadmap](/frontend). + +## Pick a Language +For the languages, you can develop android apps either by using Kotlin or Java. + +[![](/roadmaps/android/pick-language.png)](/roadmaps/android/pick-language.png) + +Although, you can use both [Kotlin](https://en.wikipedia.org/wiki/Kotlin_(programming_language)) and [Java](https://en.wikipedia.org/wiki/Java_(programming_language)) to develop native android apps, [Google announced in 2019](https://android-developers.googleblog.com/2019/05/google-io-2019-empowering-developers-to-build-experiences-on-Android-Play.html) to make Kotlin the preferred way of developing android applications. If you were to start learning android development today, Kotlin should be your language of choice. + +## The Fundamentals +Install the [Android Studio](https://developer.android.com/studio) and learn the basics of Kotlin to get started. + +[![](/roadmaps/android/the-fundamentals.png)](/roadmaps/android/the-fundamentals.png) + +We have also listed down some free resources which you can use for the items listed in the image above. If you have some better ones, please do suggest. Also, you don't need to go through all of them, just go through them and pick what you like. + +* [Learn the basics of Kotlin](https://blog.teamtreehouse.com/absolute-beginners-guide-kotlin) +* [Kotlin Docs](https://kotlinlang.org/docs/reference/basic-syntax.html) and [Official Kotlin Tutorials](https://kotlinlang.org/docs/tutorials/) +* [Data Structures and Algorithms](https://www.studytonight.com/data-structures/introduction-to-data-structures). Also [check this](https://www.tutorialspoint.com/data_structures_algorithms/index.htm). +* [Kotlin DataStructures](https://kotlinlang.org/docs/reference/collections-overview.html) +* [Algorithms and DataStructures in Kotlin](https://github.com/bmaslakov/kotlin-algorithm-club) + +## Version Control Systems +Version control systems record your changes to the codebase and allow you to recall specific versions later. There are multiple Version Control Systems available but [Git](https://git-scm.com/) is the most common one these days. + +[![](/roadmaps/android/git-github.png)](/roadmaps/android/git-github.png) + +Here are some of the resources to get you started. Feel free to google and find something else that you find easier. + +* [Udacity — Version Control with Git](https://www.udacity.com/course/version-control-with-git--ud123) +* [GitHub Hello World](https://guides.github.com/activities/hello-world/) + +## Building an Application + +Here is the list of items that you are going to need when developing Android applications. Please note that, this is an exhaustive list, and you don't need to know it all from the get-go. Get an idea of the items listed, and just start building some apps and keep the items listed in the back of your mind and have a deep dive when using them. + +[![](/roadmaps/android/build-an-application.png)](/roadmaps/android/build-an-application.png) + +To learn more about the items listed in the image above, here are the links to the relevant docs + +* [Using Activities and Activity Life Cycles](https://developer.android.com/guide/components/activities/intro-activities) +* Building Flexible Interfaces using [Fragments](https://developer.android.com/guide/components/fragments) +* [Debugging using Android Studio Debugger](https://developer.android.com/studio/debug) +* [Handling App Configurations](https://developer.android.com/work/managed-configurations) +* [Using Intents and Intent Filters](https://developer.android.com/guide/components/intents-filters) +* [Understand Context](https://guides.codepath.com/android/Using-Context) +* [Learn about Multithreading](https://developer.android.com/training/multiple-threads) +* [Data Privacy](https://www.raywenderlich.com/6901838-data-privacy-for-android) +* [Securing Network Data](https://www.raywenderlich.com/5634-securing-network-data-tutorial-for-android) +* [Dependency Injection](https://developer.android.com/training/dependency-injection) +* [Content Providers](https://developer.android.com/guide/topics/providers/content-providers) +* [Glide](https://github.com/bumptech/glide), [Retrofit](https://square.github.io/retrofit/), [Crashlytics](https://firebase.google.com/docs/crashlytics/get-started), [GSON](https://github.com/google/gson) +* [Room](https://developer.android.com/topic/libraries/architecture/room), [Navigation](https://developer.android.com/guide/navigation/navigation-getting-started), [Work Manager](https://developer.android.com/topic/libraries/architecture/workmanager), [LiveData](https://developer.android.com/topic/libraries/architecture/livedata), [Data Binding](https://developer.android.com/topic/libraries/data-binding) +* [RxJava](https://github.com/ReactiveX/RxJava), [RxKotlin](https://github.com/ReactiveX/RxKotlin) +* [Memory Management Overview](https://developer.android.com/topic/performance/memory-overview) +* [Diving deeper into context-oriented programming in Kotlin](https://proandroiddev.com/diving-deeper-into-context-oriented-programming-in-kotlin-3ecb4ec38814) + +I would highly recommend watching [this free course](https://www.udacity.com/course/developing-android-apps-with-kotlin--ud9012) from google on Developing Android Apps with Kotlin. Also, here are some of the resources to learn more about the topics listed above. + +* [Developing Android Apps with Kotlin](https://www.udacity.com/course/developing-android-apps-with-kotlin--ud9012) +* [Android Developer Guides](https://developer.android.com/guide) +* [Raywenderlich](https://www.raywenderlich.com) + +## Wrap Up + +That wraps it up for the android developer roadmap. Again, remember to not be exhausted by the list; just learn the basics and start working on some project, rest of the learnings will come along the way. Good luck! + +For any suggestions, improvements and feedback, feel free to [submit an issue](https://github.com/kamranahmedse/roadmap.sh) or reach out to me on twitter [@kamranahmedse](https://twitter.com/kamranahmedse). + + +


diff --git a/content/roadmaps/4-android/meta.json b/content/roadmaps/4-android/meta.json new file mode 100644 index 000000000..ca0508023 --- /dev/null +++ b/content/roadmaps/4-android/meta.json @@ -0,0 +1,35 @@ +{ + "seo": { + "title": "Android Developer Roadmap: Learn to become an Android developer", + "description": "Community driven, articles, resources, guides, interview questions, quizzes for android development. Learn to become a modern Android developer by following the steps, skills, resources and guides listed in this roadmap.", + "keywords": [ + "guide to becoming an android developer", + "android developer roadmap", + "android roadmap", + "become android developer", + "android developer skills", + "android skills test", + "skills for android development", + "learn android development", + "what is android", + "android quiz", + "android interview questions" + ] + }, + "title": "Android Developer", + "description": "Step by step guide to becoming an Android developer", + "featuredDescription": "Step by step guide to becoming a modern Android Developer in 2020", + "isTextHeavy": true, + "featured": true, + "path": "./landscape.md", + "resources": "./resources.md", + "versions": [ + "latest", + "2018", + "2017" + ], + "author": { + "name": "Kamran Ahmed", + "url": "https://twitter.com/kamranahmedse" + } +} diff --git a/content/roadmaps/4-fullstack/resources.md b/content/roadmaps/4-android/resources.md similarity index 100% rename from content/roadmaps/4-fullstack/resources.md rename to content/roadmaps/4-android/resources.md diff --git a/content/roadmaps/4-fullstack/landscape.md b/content/roadmaps/5-fullstack/landscape.md similarity index 100% rename from content/roadmaps/4-fullstack/landscape.md rename to content/roadmaps/5-fullstack/landscape.md diff --git a/content/roadmaps/4-fullstack/meta.json b/content/roadmaps/5-fullstack/meta.json similarity index 100% rename from content/roadmaps/4-fullstack/meta.json rename to content/roadmaps/5-fullstack/meta.json diff --git a/content/roadmaps/5-qa/resources.md b/content/roadmaps/5-fullstack/resources.md similarity index 100% rename from content/roadmaps/5-qa/resources.md rename to content/roadmaps/5-fullstack/resources.md diff --git a/content/roadmaps/5-qa/landscape.md b/content/roadmaps/6-qa/landscape.md similarity index 100% rename from content/roadmaps/5-qa/landscape.md rename to content/roadmaps/6-qa/landscape.md diff --git a/content/roadmaps/5-qa/meta.json b/content/roadmaps/6-qa/meta.json similarity index 100% rename from content/roadmaps/5-qa/meta.json rename to content/roadmaps/6-qa/meta.json diff --git a/content/roadmaps/6-qa/resources.md b/content/roadmaps/6-qa/resources.md new file mode 100644 index 000000000..9ea876887 --- /dev/null +++ b/content/roadmaps/6-qa/resources.md @@ -0,0 +1,7 @@ +> **We are still preparing the resources**. Please check back later or [subscribe to get notified](/signup). + +While we prepare the list, follow this simple advice to learn anything + +> Just **pick a project and start working on it**, you will learn all that you need along the way. + +**→**   [All Roadmaps](/roadmaps)  •  [Programming guides](/guides)  •  [Subscribe](/signup) diff --git a/layouts/default/global.scss b/layouts/default/global.scss index 04c7d7370..88ffae622 100644 --- a/layouts/default/global.scss +++ b/layouts/default/global.scss @@ -7,7 +7,7 @@ } .container-small { - max-width: 800px; + max-width: 800px !important; } ul li, ol li { @@ -73,4 +73,4 @@ code:not([class]) { .body-wrap.sponsor-banner-visible { margin-top: 44px; -} \ No newline at end of file +} diff --git a/pages/roadmaps.js b/pages/roadmaps.js index 94bee2902..4882b80e7 100644 --- a/pages/roadmaps.js +++ b/pages/roadmaps.js @@ -53,12 +53,12 @@ const RoadmapsList = () => ( /> )) } - + {/**/} diff --git a/public/roadmaps/android/build-an-application.png b/public/roadmaps/android/build-an-application.png new file mode 100644 index 000000000..7f9859bae Binary files /dev/null and b/public/roadmaps/android/build-an-application.png differ diff --git a/public/roadmaps/android/git-github.png b/public/roadmaps/android/git-github.png new file mode 100644 index 000000000..aa380fc36 Binary files /dev/null and b/public/roadmaps/android/git-github.png differ diff --git a/public/roadmaps/android/pick-language.png b/public/roadmaps/android/pick-language.png new file mode 100644 index 000000000..2665970a9 Binary files /dev/null and b/public/roadmaps/android/pick-language.png differ diff --git a/public/roadmaps/android/the-fundamentals.png b/public/roadmaps/android/the-fundamentals.png new file mode 100644 index 000000000..412d5a0a5 Binary files /dev/null and b/public/roadmaps/android/the-fundamentals.png differ diff --git a/public/sitemap.xml b/public/sitemap.xml index 7cffcf24b..b6b5b354e 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -18,6 +18,12 @@ 2020-01-29T07:49:29.706Z 1.0 + + https://roadmap.sh/android + monthly + 2020-05-26T00:11:12.565Z + 1.0 + https://roadmap.sh/fullstack monthly @@ -30,6 +36,12 @@ 2020-01-29T07:49:29.706Z 1.0 + + https://roadmap.sh/guides/session-authentication + monthly + 2020-05-19T20:59:14.191Z + 1.0 + https://roadmap.sh/guides/basic-authentication monthly @@ -153,13 +165,13 @@ https://roadmap.sh/ monthly - 2020-01-02T05:41:16.178Z + 2020-05-25T18:33:29.749Z 1.0 https://roadmap.sh/roadmaps monthly - 2020-02-23T07:24:00.532Z + 2020-05-25T19:25:25.060Z 1.0