Add: Room dependency

This commit is contained in:
machiav3lli 2021-10-13 13:43:39 +02:00
parent 22f3e188b1
commit 88fce8d15d

View File

@ -16,6 +16,7 @@ buildscript {
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: "kotlin-kapt"
android {
@ -122,4 +123,7 @@ dependencies {
implementation 'com.fasterxml.jackson.core:jackson-core:2.13.0'
implementation 'io.coil-kt:coil:1.4.0'
implementation 'com.github.topjohnwu.libsu:core:3.1.2'
implementation "androidx.room:room-runtime:2.3.0"
implementation "androidx.room:room-ktx:2.3.0"
kapt "androidx.room:room-compiler:2.3.0"
}