From 88fce8d15dd399853775638513808145fea7e68d Mon Sep 17 00:00:00 2001 From: machiav3lli Date: Wed, 13 Oct 2021 13:43:39 +0200 Subject: [PATCH] Add: Room dependency --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index 00081f82..ee1166f3 100644 --- a/build.gradle +++ b/build.gradle @@ -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" }