forked from Kaaveh/ComposeNews
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kaaveh#123 Move SQLDelight to a dedicated module and update dependencies
- Moved SQLDelight `.sq` file to a separate `ComposeNews.data.sqldelight` module. - Updated dependencies in `build.gradle.kts` and `settings.gradle.kts`. - Refactored database access logic to ensure modularity and isolation of SQLDelight API. - Adjusted `MarketDaoImpl.kt` to align with the new structure.
- Loading branch information
1 parent
0d43d93
commit da82ade
Showing
7 changed files
with
45 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
data/market-local/src/main/java/ir/composenews/localdatasource/database/MarketDaoImpl.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
</manifest> |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
pluginManagement { | ||
includeBuild("build-logic") | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
dependencyResolutionManagement { | ||
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) | ||
repositories { | ||
google() | ||
mavenCentral() | ||
} | ||
} | ||
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS") | ||
rootProject.name = "ComposeNews" | ||
include(":library:designsystem") | ||
include(":library:navigation") | ||
include(":konsist") | ||
include(":core:sync") | ||
include(":core:test") | ||
include(":core:base") | ||
include(":core:uimarket") | ||
include(":core:extensions") | ||
include(":core:network:ktor") | ||
include(":domain:market") | ||
include(":data:market-remote") | ||
include(":data:market-local") | ||
include(":data:market-repository") | ||
include(":feature:marketlist") | ||
include(":feature:marketdetail") | ||
include(":app") | ||
include(":app-watch") | ||
include(":app-watch:app") | ||
include(":app-watch:navigation") | ||
include(":app-watch:ui") | ||
include(":data:sqldelight") |