Skip to content

Commit

Permalink
Rename presentation module to presenter.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskioko committed Nov 11, 2024
1 parent 4867de7 commit dc1cd52
Show file tree
Hide file tree
Showing 87 changed files with 75 additions and 75 deletions.
18 changes: 9 additions & 9 deletions android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,15 @@ dependencies {
implementation(projects.database)
implementation(projects.datastore.api)
implementation(projects.datastore.implementation)
implementation(projects.presentation.discover)
implementation(projects.presentation.library)
implementation(projects.presentation.home)
implementation(projects.presentation.moreShows)
implementation(projects.presentation.search)
implementation(projects.presentation.seasondetails)
implementation(projects.presentation.settings)
implementation(projects.presentation.showDetails)
implementation(projects.presentation.trailers)
implementation(projects.presenter.discover)
implementation(projects.presenter.library)
implementation(projects.presenter.home)
implementation(projects.presenter.moreShows)
implementation(projects.presenter.search)
implementation(projects.presenter.seasondetails)
implementation(projects.presenter.settings)
implementation(projects.presenter.showDetails)
implementation(projects.presenter.trailers)
implementation(projects.tmdbApi.api)
implementation(projects.tmdbApi.implementation)

Expand Down
2 changes: 1 addition & 1 deletion android/ui/discover/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
android { namespace = "com.thomaskioko.tvmaniac.ui.discover" }

dependencies {
api(projects.presentation.discover)
api(projects.presenter.discover)

implementation(projects.android.designsystem)
implementation(projects.android.resources)
Expand Down
2 changes: 1 addition & 1 deletion android/ui/home/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins { alias(libs.plugins.tvmaniac.compose.library) }
android { namespace = "com.thomaskioko.tvmaniac.ui.home" }

dependencies {
api(projects.presentation.home)
api(projects.presenter.home)

implementation(projects.android.designsystem)
implementation(projects.android.resources)
Expand Down
2 changes: 1 addition & 1 deletion android/ui/library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
android { namespace = "com.thomaskioko.tvmaniac.ui.library" }

dependencies {
api(projects.presentation.library)
api(projects.presenter.library)

implementation(projects.android.designsystem)
implementation(projects.android.resources)
Expand Down
2 changes: 1 addition & 1 deletion android/ui/more-shows/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
android { namespace = "com.thomaskioko.tvmaniac.ui.moreshows" }

dependencies {
api(projects.presentation.moreShows)
api(projects.presenter.moreShows)

implementation(projects.android.designsystem)

Expand Down
2 changes: 1 addition & 1 deletion android/ui/search/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
android { namespace = "com.thomaskioko.tvmaniac.ui.search" }

dependencies {
api(projects.presentation.search)
api(projects.presenter.search)

implementation(projects.android.designsystem)
implementation(projects.android.resources)
Expand Down
2 changes: 1 addition & 1 deletion android/ui/season-details/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
android { namespace = "com.thomaskioko.tvmaniac.ui.seasondetails" }

dependencies {
api(projects.presentation.seasondetails)
api(projects.presenter.seasondetails)

implementation(projects.android.designsystem)
implementation(projects.android.resources)
Expand Down
2 changes: 1 addition & 1 deletion android/ui/settings/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins { alias(libs.plugins.tvmaniac.compose.library) }
android { namespace = "com.thomaskioko.tvmaniac.ui.settings" }

dependencies {
api(projects.presentation.settings)
api(projects.presenter.settings)
api(projects.datastore.api)

implementation(projects.android.designsystem)
Expand Down
2 changes: 1 addition & 1 deletion android/ui/show-details/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
android { namespace = "com.thomaskioko.tvmaniac.ui.showdetails" }

dependencies {
api(projects.presentation.showDetails)
api(projects.presenter.showDetails)

implementation(projects.android.designsystem)
implementation(projects.android.resources)
Expand Down
2 changes: 1 addition & 1 deletion android/ui/trailers/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins { alias(libs.plugins.tvmaniac.compose.library) }
android { namespace = "com.thomaskioko.tvmaniac.ui.trailers" }

dependencies {
api(projects.presentation.trailers)
api(projects.presenter.trailers)

implementation(projects.android.designsystem)
implementation(projects.android.resources)
Expand Down
18 changes: 9 additions & 9 deletions navigation/api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ kotlin {
api(libs.essenty.lifecycle)

implementation(projects.datastore.api)
implementation(projects.presentation.discover)
implementation(projects.presentation.home)
implementation(projects.presentation.library)
implementation(projects.presentation.moreShows)
implementation(projects.presentation.search)
implementation(projects.presentation.seasondetails)
implementation(projects.presentation.settings)
implementation(projects.presentation.showDetails)
implementation(projects.presentation.trailers)
implementation(projects.presenter.discover)
implementation(projects.presenter.home)
implementation(projects.presenter.library)
implementation(projects.presenter.moreShows)
implementation(projects.presenter.search)
implementation(projects.presenter.seasondetails)
implementation(projects.presenter.settings)
implementation(projects.presenter.showDetails)
implementation(projects.presenter.trailers)

implementation(libs.coroutines.core)
}
Expand Down
16 changes: 8 additions & 8 deletions navigation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ kotlin {
implementation(projects.core.base)
implementation(projects.traktAuth.api)

implementation(projects.presentation.discover)
implementation(projects.presentation.library)
implementation(projects.presentation.moreShows)
implementation(projects.presentation.search)
implementation(projects.presentation.seasondetails)
implementation(projects.presentation.settings)
implementation(projects.presentation.showDetails)
implementation(projects.presentation.trailers)
implementation(projects.presenter.discover)
implementation(projects.presenter.library)
implementation(projects.presenter.moreShows)
implementation(projects.presenter.search)
implementation(projects.presenter.seasondetails)
implementation(projects.presenter.settings)
implementation(projects.presenter.showDetails)
implementation(projects.presenter.trailers)

implementation(libs.kotlinInject.runtime)

Expand Down
18 changes: 9 additions & 9 deletions navigation/implementation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ kotlin {
implementation(projects.traktAuth.api)
implementation(projects.navigation.api)

implementation(projects.presentation.discover)
implementation(projects.presentation.home)
implementation(projects.presentation.library)
implementation(projects.presentation.moreShows)
implementation(projects.presentation.search)
implementation(projects.presentation.seasondetails)
implementation(projects.presentation.settings)
implementation(projects.presentation.showDetails)
implementation(projects.presentation.trailers)
implementation(projects.presenter.discover)
implementation(projects.presenter.home)
implementation(projects.presenter.library)
implementation(projects.presenter.moreShows)
implementation(projects.presenter.search)
implementation(projects.presenter.seasondetails)
implementation(projects.presenter.settings)
implementation(projects.presenter.showDetails)
implementation(projects.presenter.trailers)

implementation(libs.kotlinInject.runtime)
}
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ kotlin {
commonMain {
dependencies {
implementation(projects.core.base)
implementation(projects.presentation.discover)
implementation(projects.presentation.library)
implementation(projects.presentation.search)
implementation(projects.presentation.settings)
implementation(projects.presenter.discover)
implementation(projects.presenter.library)
implementation(projects.presenter.search)
implementation(projects.presenter.settings)
implementation(projects.traktAuth.api)

implementation(libs.decompose.decompose)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
18 changes: 9 additions & 9 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,15 @@ include(
":data:watchproviders:testing",
":navigation:api",
":navigation:implementation",
":presentation:discover",
":presentation:home",
":presentation:library",
":presentation:more-shows",
":presentation:search",
":presentation:seasondetails",
":presentation:settings",
":presentation:show-details",
":presentation:trailers",
":presenter:discover",
":presenter:home",
":presenter:library",
":presenter:more-shows",
":presenter:search",
":presenter:seasondetails",
":presenter:settings",
":presenter:show-details",
":presenter:trailers",
":shared",
":tmdb-api:api",
":tmdb-api:implementation",
Expand Down
36 changes: 18 additions & 18 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ kotlin {

export(projects.navigation.api)
export(projects.datastore.api)
export(projects.presentation.discover)
export(projects.presentation.home)
export(projects.presentation.library)
export(projects.presentation.moreShows)
export(projects.presentation.search)
export(projects.presentation.seasondetails)
export(projects.presentation.settings)
export(projects.presentation.showDetails)
export(projects.presentation.trailers)
export(projects.presenter.discover)
export(projects.presenter.home)
export(projects.presenter.library)
export(projects.presenter.moreShows)
export(projects.presenter.search)
export(projects.presenter.seasondetails)
export(projects.presenter.settings)
export(projects.presenter.showDetails)
export(projects.presenter.trailers)

export(libs.decompose.decompose)
export(libs.essenty.lifecycle)
Expand Down Expand Up @@ -96,15 +96,15 @@ kotlin {
api(projects.navigation.api)
api(projects.navigation.implementation)

api(projects.presentation.discover)
api(projects.presentation.library)
api(projects.presentation.home)
api(projects.presentation.moreShows)
api(projects.presentation.search)
api(projects.presentation.seasondetails)
api(projects.presentation.settings)
api(projects.presentation.showDetails)
api(projects.presentation.trailers)
api(projects.presenter.discover)
api(projects.presenter.library)
api(projects.presenter.home)
api(projects.presenter.moreShows)
api(projects.presenter.search)
api(projects.presenter.seasondetails)
api(projects.presenter.settings)
api(projects.presenter.showDetails)
api(projects.presenter.trailers)

api(libs.decompose.decompose)
api(libs.essenty.lifecycle)
Expand Down

0 comments on commit dc1cd52

Please sign in to comment.