diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml
index a5f05cd8..23704740 100644
--- a/.idea/jarRepositories.xml
+++ b/.idea/jarRepositories.xml
@@ -21,5 +21,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
index 1ef98102..f010ff24 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -3,6 +3,10 @@ plugins {
id "dagger.hilt.android.plugin"
}
+repositories {
+ maven { url 'https://jitpack.io' }
+}
+
final def keystorePropertiesFile = rootProject.file("keystore.properties")
android {
adbOptions {
@@ -65,6 +69,7 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
dependencies {
+ kapt "com.github.MatrixDev.Roomigrant:RoomigrantCompiler:$roomigrant_version"
kapt "com.google.dagger:hilt-compiler:$hilt_dagger_version"
kapt "androidx.hilt:hilt-compiler:$hilt_androidx_version"
kapt "androidx.room:room-compiler:$room_version"
@@ -91,6 +96,7 @@ dependencies {
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version"
implementation "androidx.ui:ui-tooling:$compose_version"
+ implementation "com.github.MatrixDev.Roomigrant:RoomigrantLib:$roomigrant_version"
implementation "com.google.android.material:material:$material_version"
implementation "com.google.dagger:hilt-android:$hilt_dagger_version"
implementation "com.squareup.moshi:moshi:$moshi_version"
diff --git a/build.gradle b/build.gradle
index b17c18e6..cae12b01 100644
--- a/build.gradle
+++ b/build.gradle
@@ -23,6 +23,7 @@ buildscript {
okhttp_version = "4.10.0-RC1"
retrofit_version = "2.9.0"
room_version = "2.3.0-alpha03"
+ roomigrant_version = "0.2.0"
}
repositories {
google()