75.2 Modifying the Build Configuration
Begin by launching Android Studio and opening the RoomDemo project started in the previous chapter. Before adding any new classes to the project, the first step is to add some additional libraries to the build configuration, including the Room persistence library. Now is also a good time to enable view binding in the build.gradle file. Locate and edit the module level build.gradle file (app -> Gradle Scripts -> build.gradle (Module: RoomDemo.app)) and modify it as follows:
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-kapt'
}
.
.
android {
buildFeatures {
viewBinding true
}
.
.
dependencies {
.
.
implementation "androidx.room:room...