mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-17 12:07:03 +05:30
build: use org.jetbrains.compose artifacts
Signed-off-by: Aditya Wasan <adityawasan55@gmail.com>
This commit is contained in:
parent
c5360f264f
commit
42f2b25f5c
3 changed files with 8 additions and 13 deletions
|
@ -38,20 +38,20 @@ kotlin {
|
|||
sourceSets {
|
||||
val androidMain by getting {
|
||||
dependencies {
|
||||
implementation(Dependencies.AndroidX.Compose.runtime)
|
||||
implementation(compose.runtime)
|
||||
implementation(Dependencies.AndroidX.browser)
|
||||
}
|
||||
}
|
||||
|
||||
val commonMain by getting {
|
||||
dependencies {
|
||||
implementation(Dependencies.AndroidX.Compose.runtime)
|
||||
implementation(compose.runtime)
|
||||
}
|
||||
}
|
||||
|
||||
val jvmMain by getting {
|
||||
dependencies {
|
||||
implementation(Dependencies.AndroidX.Compose.runtime)
|
||||
implementation(compose.runtime)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,4 +2,4 @@ package dev.msfjarvis.lobsters.ui.urllauncher
|
|||
|
||||
import androidx.compose.runtime.staticCompositionLocalOf
|
||||
|
||||
val LocalUrlLauncher = staticCompositionLocalOf<UrlLauncher> { error("Needs to be provided") }
|
||||
val LocalUrlLauncher = staticCompositionLocalOf<UrlLauncher> { error("Needs to be provided") }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue