mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-18 03:17:03 +05:30
Merge #71
71: Follow up on Gradle build rewrite r=msfjarvis a=msfjarvis Adds back a dependency that was accidentally removed, and converts `settings.gradle` to Kotlin bors r+ Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
commit
8729ad9cd1
3 changed files with 4 additions and 4 deletions
|
@ -8,6 +8,7 @@ plugins {
|
|||
dependencies {
|
||||
implementation(project(":model"))
|
||||
implementation(Dependencies.Kotlin.Serialization.json)
|
||||
implementation(Dependencies.ThirdParty.Retrofit.lib)
|
||||
implementation(Dependencies.ThirdParty.retrofitSerialization)
|
||||
testImplementation(Dependencies.Testing.junit)
|
||||
testImplementation(Dependencies.Kotlin.Coroutines.core)
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
rootProject.name = "lobste.rs"
|
||||
include ':app'
|
||||
include ':lobsters-api'
|
||||
include ':model'
|
3
settings.gradle.kts
Normal file
3
settings.gradle.kts
Normal file
|
@ -0,0 +1,3 @@
|
|||
rootProject.name = "lobste.rs"
|
||||
include(":app", ":lobsters-api", ":model")
|
||||
enableFeaturePreview("GRADLE_METADATA")
|
Loading…
Add table
Add a link
Reference in a new issue