Saving Data on Android [SUBSCRIBER]

Here’s a great article from Ray Wenderlich | High quality programming tutorials: iOS, Android, Swift, Kotlin, Unity, and more

<h2>Save Data on Android!</h2>
<p>Persisting data has always been a fundamental part of any app. Saving data locally or remotely with modern techniques for synchronization allows your app to always be up-to-date, reactively presenting fresh data.</p>
<p>This book is for intermediate Kotlin or Android developers who want to know how to persist data using the standard Android APIs, the Jetpack DataStore mechanism, the Room Android Architecture Component or Google Firebase’s offerings.</p>
<h3>Topics Covered in This Book</h3>
<ul>
<li><strong>Persistence with Android SDK</strong>: Learn how to manage files, SharedPreferences and SQLite databases using the APIs the Android platform offers by default.</li>
<li><strong>Jetpack DataStore</strong>: Learn how to persist simple data by using key-value pairs. This is Google’s new and improved solution for saving data. In this book, you’ll learn basics about Preferences DataStore and how to migrate from SharedPreferences.</li>
<li><strong>Using Room</strong>: Room is one of the most important Google Architecture Components. It allows you to manage entities and relationships using classic Object-Oriented principles. In this book, you’ll learn everything you need to store data and run queries on top of it.</li>
<li><strong>Managing relationships with Room</strong>: A database has entities and relationships. In this book, you’ll learn how to design your database and manage relationships both eagerly and lazily.</li>
<li><strong>Managing and testing migrations</strong>: Every app evolves over time. Here, you’ll learn how to manage migrations with Room and how to test them properly.</li>
<li><strong>Firebase Realtime Database</strong>: Google provides tools to manage data both locally and remotely through the Firebase platform. With the Firebase Realtime Database, you can manage and keep data in sync, simply and efficiently.</li>
<li><strong>Cloud Storage</strong>: Another option Google provides is Cloud Storage, which lets you leverage all the power of Google’s infrastructure to manage your data and run expensive queries.</li>
</ul>

Source link