this post was submitted on 13 Sep 2023
9 points (90.9% liked)
Android Development
637 readers
1 users here now
Welcome to the programming.dev Android development community!
The Android robot is reproduced or modified from work created and shared by Google and used according to terms described in the Creative Commons 3.0 Attribution License
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I've always found building complete things to be the best way to learn (since you have to solve all of the problems for the entire app to finish), so IMO this would be a good project to learn on.
They could even fully rebuild it with Jetpack compose (possibly Kotlin even) instead. Will have to build from scratch and use the old codebase as a reference.
Tho be warned Jetpack Compose is not mature yet.
I'm gonna ask a stupid question real quick. What happened to Java development on Android? I've heard Kotlin is pretty similar so I'm not worried about learning another language, but I'm curious if Kotlin is a requirement for Android development now.
Assuming I can still build an app the same way I did in school, what's the benefit to switching to Kotlin? Would the app be easier to maintain on Kotlin? Better performance? Like I said, perfectly okay with picking up a new language, just looking for the "why".
The reason is Google kept Android stuck on Java 6 syntax for so long that the community moved on. At the time, moving from Java to Kotlin was a huge deal and then Jetbrains made a good job in making the tools work flawlessly and with no performance penalties as everything is compiled to Java bytecode (besides the nice interoperability).
Now Java has been upgraded on Android but it was too late.