mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 20:17:02 +05:30
This reverts commit da25dd2ed9bea50691b889e093ff896fea598b1a. Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
18 lines
567 B
Kotlin
18 lines
567 B
Kotlin
plugins {
|
|
id("com.android.library")
|
|
kotlin("android")
|
|
kotlin("kapt")
|
|
`lobsters-plugin`
|
|
}
|
|
|
|
dependencies {
|
|
kapt(Dependencies.AndroidX.Hilt.daggerCompiler)
|
|
kapt(Dependencies.ThirdParty.Moshi.codegen)
|
|
api(Dependencies.ThirdParty.Retrofit.lib)
|
|
implementation(project(":database"))
|
|
implementation(Dependencies.AndroidX.Hilt.dagger)
|
|
implementation(Dependencies.ThirdParty.Retrofit.moshi)
|
|
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
|
testImplementation(Dependencies.Testing.junit)
|
|
testImplementation(Dependencies.Testing.mockWebServer)
|
|
}
|