Android SharedPreferences using Kotlin
In this tutorial, we'll learn how to implement SharedPreferences in our Android Application using Kotlin. What is Android SharedPreferences? SharedPreferences is part of the Android API since API level 1. It's an interface that allows us to store/modify/delete data locally. Generally, it is used to cache user local data such as login forms. The data […]