Skip to content

Commit

Permalink
Remove gtfs_Static dependency, unless it is ready to use
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharma-xyz committed Dec 14, 2024
1 parent 930146b commit 4e7d5ca
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
1 change: 0 additions & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ kotlin {
implementation(projects.feature.tripPlanner.network)
implementation(projects.feature.tripPlanner.ui)
implementation(projects.feature.tripPlanner.state)
implementation(projects.gtfsStatic)

implementation(libs.navigation.compose)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import org.koin.dsl.includes
import org.koin.dsl.koinConfiguration
import org.koin.dsl.module
import xyz.ksharma.krail.core.appinfo.di.appInfoModule
import xyz.ksharma.krail.gtfs_static.di.fileStorageModule
import xyz.ksharma.krail.gtfs_static.di.gtfsModule
import xyz.ksharma.krail.sandook.di.sandookModule
import xyz.ksharma.krail.splash.SplashViewModel
import xyz.ksharma.krail.trip.planner.network.api.di.networkModule
Expand All @@ -22,8 +20,6 @@ val koinConfig = koinConfiguration {
sandookModule,
splashModule,
appInfoModule,
gtfsModule,
fileStorageModule,
alertsCacheModule,
)
}
Expand Down
1 change: 0 additions & 1 deletion feature/trip-planner/ui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ kotlin {
implementation(projects.feature.tripPlanner.state)
implementation(projects.sandook)
implementation(projects.taj)
implementation(projects.gtfsStatic)

implementation(compose.foundation)
implementation(compose.animation)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.update
import kotlinx.coroutines.launch
import xyz.ksharma.krail.gtfs_static.NswGtfsService
import xyz.ksharma.krail.sandook.Sandook
import xyz.ksharma.krail.sandook.SavedTrip
import xyz.ksharma.krail.trip.planner.ui.state.savedtrip.SavedTripUiEvent
Expand All @@ -18,7 +17,6 @@ import xyz.ksharma.krail.trip.planner.ui.state.timetable.Trip

class SavedTripsViewModel(
private val sandook: Sandook,
private val nswGtfsService: NswGtfsService,
) : ViewModel() {

private val _uiState: MutableStateFlow<SavedTripsState> = MutableStateFlow(SavedTripsState())
Expand Down

0 comments on commit 4e7d5ca

Please sign in to comment.