mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 23:47:02 +05:30
app: add roomigrant dependencies
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
f367c79e8e
commit
4b5c1e6d15
3 changed files with 12 additions and 0 deletions
5
.idea/jarRepositories.xml
generated
5
.idea/jarRepositories.xml
generated
|
@ -21,5 +21,10 @@
|
|||
<option name="name" value="Google" />
|
||||
<option name="url" value="https://dl.google.com/dl/android/maven2/" />
|
||||
</remote-repository>
|
||||
<remote-repository>
|
||||
<option name="id" value="maven" />
|
||||
<option name="name" value="maven" />
|
||||
<option name="url" value="https://jitpack.io" />
|
||||
</remote-repository>
|
||||
</component>
|
||||
</project>
|
|
@ -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"
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue