diff --git a/shared/build.gradle.kts b/shared/build.gradle.kts index 2a6b42a..930bb7a 100644 --- a/shared/build.gradle.kts +++ b/shared/build.gradle.kts @@ -10,7 +10,7 @@ plugins { kotlin { // Only desktop (macOS) for now - jvm("desktop") + jvm() // TODO: add back when Android SDK / Xcode is available // androidTarget() // listOf(iosX64(), iosArm64(), iosSimulatorArm64()).forEach { iosTarget -> @@ -38,14 +38,10 @@ kotlin { implementation(libs.coil.compose) implementation(libs.coil.network) } - desktopMain.dependencies { + jvmMain.dependencies { implementation(compose.desktop.currentOs) implementation(libs.ktor.client.okhttp) } - // TODO: add back when iOS target is enabled - // iosMain.dependencies { - // implementation(libs.ktor.client.darwin) - // } } }