Aman Sharma
Aman Sharma

Reputation: 39

roadmap for android development

I have basic understanding of java and how classes works. please guide me in the right path.

kindly give brief summary of steps that i have to follow in this journey.

Upvotes: 0

Views: 702

Answers (3)

Shawn
Shawn

Reputation: 1382

I recommend using the google codelabs to learn topics, these codelabs are updated by the Android dev team use best practices. If you are just starting out I would recommend learning Kotlin over java, Kotlin is the recommend langue by the Android Dev team, Kotlin takes advantage of coroutines.

Here is the Android dev guide for beginners, I would work through these modules. I still refer to them from time to time. https://developer.android.com/courses/android-basics-kotlin/course

Upvotes: 0

jbdev
jbdev

Reputation: 533

Here's the Android Developer Documentation. Considering that Kotlin is the preferred language to use for Android development, I would suggest expanding your knowledge of object-oriented programming in Kotlin rather than Java.

The documentation provides links to guides/tutorials that will walk you through the basics of an Android application while also establishing proper coding practices in Kotlin. I personally find the docs very useful in this regard, as I'm currently refactoring a legacy app written in Java.

Upvotes: 0

Anupreet Kaur
Anupreet Kaur

Reputation: 46

Look at this website. I find it quite useful- https://roadmap.sh/android

Upvotes: 1

Related Questions