database is a part of the Android Jetpack which is persistence library. Room database is an abstraction layer over SQLite which allow us more robust database …
Android
Android Launch Mode and Flag you need to know
Introduction Since the introduce of Android development, here is that the one among the quality things that haven’t changed is launch modes. Launch modes in …
Check now this Coroutine Builder and Scope Functions
A coroutine is a concurrency design pattern that you can use on Android to simplify code that run asynchronously. Coroutine is not a thread but …
Kotlin Coroutine v/s Thread you need to know
As we know that asynchronous programming is very important for advance applications. because by the use of it we can increases amount of work that …
All you need to know about kotlin OOPS concept part-2
Kotlin Visibility Modifier Kotlin visibility modifiers are the special variety of keywords which are wont to make our variable or method restricted for the employment …
All you need to know about kotlin OOPS concept part 1
Kotlin have ability to supports both object oriented programming (OOP) as well as functional programming. Object oriented programming that is oops is based on real …
Know everything about Live data in android jetpack
Mobile application users expect UI components to reply interactively with the changes and updates in related data for a more interactive and dynamic usage experience. …
Check this kotlin Exception handling and It’s type
Exception is a runtime problem which occurs at the runtime of the program and cause to program termination. This may be happen due to some …
Know about Control Flow and Loops in kotlin
Kotlin provide various kind of expression and loops which help us to control the flow of our program.Here are some expression and loops which kotlin …
Know about Kotlin Companion Object and Static Keyword
In other programming language like Java and C#, when we want to call the method and want to access the members of a class then …