#android-app-development
Read more stories on Hashnode
Articles with this tag
In this article , Lets understand how to use property getters and setters in kotlin A simple student class as follows class Student(var...
fun main(){ println(Car.getInfo()) } class Car(){ companion object{ fun getInfo() : String { return "Mahindra XUV 300" ...
Basically, Kotlin attempts to resolve NullPointerException(NPE) by making the data types as nou nullable Variable Declaration If you try to assign a...
In this article , lets understand how to use Primary constructor , Multiple constructors and init{...} block First lets start with simple Student...
Please take a look at this post Android Manager Basics which discuss about Work Manager Basics This blog article discusses about updating Work...
This blog article discusses about work manager with chain requests First we will understand how to make worker's output available to next one...