I've been learning modern #android development for the last month. Last time i did android development was about 10 years ago, and a lot has changed since then:
* #Kotlin is now used as the programming language instead of Java
* Co-routines (a way in Kotlin to run work in threads) are used for performing GUI updates
* Jetpack #Compose is used instead of XML for creating the layouts
* Compose uses state variables to update the GUI in a declarative way
* Room has been added as a way to access SQLite databases

There are no comments yet.