-
Notifications
You must be signed in to change notification settings - Fork 25
Spotify Clone App: Lesson 6.a
Mert Şimşek edited this page Oct 18, 2019
·
2 revisions
In this lesson, we will learn
- Room Persistence
- Using Dao, Entity, Database concept
- CRUD operation using Room (Query, Insert, Delete)
- Reactive UI using RxJava and Room together
- Insert item into database @Insert
- Fetch list from database @Query
- Delete item from database @Query/@Delete
- Convert entity type. @TypeConverter
- Versioning Database
implementation "androidx.room:room-runtime:2.2.0"
implementation "androidx.room:room-rxjava2:2.2.0"
kapt "androidx.room:room-compiler:2.2.0"
- Will be available on youtube soon.