model: import API related classes

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-12-01 22:37:19 +05:30
parent f16d557138
commit c29edfd402
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
9 changed files with 10 additions and 4 deletions

View file

@ -1,10 +1,20 @@
plugins {
id("com.android.library")
kotlin("android")
kotlin("kapt")
kotlin("plugin.serialization") version "1.4.21"
`lobsters-plugin`
}
dependencies {
kapt(Dependencies.AndroidX.Hilt.daggerCompiler)
kapt(Dependencies.AndroidX.Hilt.daggerHiltCompiler)
api(Dependencies.Kotlin.Ktor.clientCore)
implementation(Dependencies.AndroidX.Hilt.dagger)
implementation(Dependencies.Kotlin.Serialization.json)
implementation(Dependencies.Kotlin.Ktor.clientJson)
implementation(Dependencies.Kotlin.Ktor.clientOkHttp)
implementation(Dependencies.Kotlin.Ktor.clientSerialization)
testImplementation(Dependencies.Testing.junit)
testImplementation(Dependencies.Kotlin.Ktor.clientTest)
}