Skip to content

Commit

Permalink
Refactor: Update Gradle Settings
Browse files Browse the repository at this point in the history
This commit updates the Gradle settings by:

- Removing several modules from the `include` block in `settings.gradle.kts`, including `:app`, `:manga_sources`, and `:novel_sources`.
- Commenting out the inclusion of specific submodules within `:novel_sources` and `:manga_sources`.
- Adjusting module dependencies in `.idea/gradle.xml` to reflect the changes in the `include` block.
- This change likely reflects a restructuring or simplification of the project's module organization.
  • Loading branch information
jacobrein committed Nov 12, 2024
1 parent 315ee65 commit 2b1850b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
7 changes: 0 additions & 7 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(
":favoritesdatabase",
":anime_sources",
":manga_sources",
//":manga_sources",
//":novel_sources",
//":app",
":Models",
":UIViews",
":animeworld",
":mangaworld",
":app",
":novelworld",
":novel_sources",
":animeworldtv",
":sharedutils",
":source_utilities",
Expand All @@ -63,11 +63,11 @@ include(
)

rootProject.name = "OtakuWorld"
include(
/*include(
":novel_sources:novelupdates",
":novel_sources:bestlightnovel"
)
include(":manga_sources:defaultmangasources")
include(":anime_sources:defaultanimesources")
)*/
//include(":manga_sources:defaultmangasources")
//include(":anime_sources:defaultanimesources")
//include(":MangaWorldbaselineprofile")
include(":gemini")

0 comments on commit 2b1850b

Please sign in to comment.