Add Room dependency

This commit is contained in:
Jarne Demeulemeester 2021-06-07 20:47:17 +02:00
parent efd511e99e
commit 9b5a94e28b
No known key found for this signature in database
GPG key ID: 60884A0C1EBA43E5

View file

@ -38,6 +38,7 @@ android {
}
dependencies {
def room_version = "2.3.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.5.0'
@ -47,6 +48,10 @@ dependencies {
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.5'
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'