Room persistence library is an object-relational mapping used on top of SQLite database. Which is mainly introduced to save the app developer time on database. In olden day's every developer used to write 1000+...
On watching online streaming KotlinConf 2018 Keynote, which I was expected to see only updates in terms of mobile apps, I become excited when I see they bring the multiplatform Kotlin/Native-1.3(Beta), which...
Currently, Android System has two main means to schedule tasks :
AlarmManager
JobScheduler API
The latest apps should use the JobScheduler API. When the system is optimizing based on memory, power, connectivity conditions, APPs can still schedule jobs.
JobScheduler always runs in main UI thread:...
When the interface contains a table view or little content subclass UITableViewController
Table view controllers already contain the protocols you just need to manage your table views content and respond to changes...
The new app publishing format, the Android App Bundle, is an improved way to package your app. The Android App Bundle lets you more easily deliver a great experience in a smaller app size, allowing for the huge variety of Android devices available today. You don’t need to refactor your code to start...
To begin developing the apps using flutter, please have look into the following steps
Install the flutter plugin from Android Studio Preference > Plugins > Search key "Flutter"
Restart the Android Studio after...
How to migrate existing java files to Kotlin ?
Here are the steps
Android Studio Menu -> Code -> Convert Java File to Kotlin FileHere is how the functions appears once you convert Java
For Threads &...
Flutter, IF and Switch statements are used to make decisions,
Please have look over on thefollowing screenshot of playground
Above example, show's how the if statement can be used to make the...
Variables: In swift, a variable holds some data, now its data could be a value, it could be a reference to an object or it can even point to a function.Variable has a couple of distinct parts, let's break it down, them...