Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .DS_Store
Binary file not shown.
16 changes: 8 additions & 8 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ android {
}

dependencies {
implementation(project(":feature:allbreeds"))
implementation(project(":feature:breedDetails"))
implementation(project(":feature:favorites"))
implementation(project(":feature:subbreeds"))
implementation(projects.feature.allbreeds)
implementation(projects.feature.breedDetails)
implementation(projects.feature.favorites)
implementation(projects.feature.subbreeds)

implementation(project(":core:designsystem"))
implementation(projects.core.designsystem)

implementation(libs.compose.icons.extended)

Expand All @@ -91,9 +91,9 @@ dependencies {
androidTestImplementation(libs.hilt.android.testing)
androidTestImplementation(libs.compose.ui.test)
androidTestImplementation(libs.android.junit)
androidTestImplementation(project(":core:database"))
androidTestImplementation(project(":core:network"))
androidTestImplementation(project(":core:testing"))
androidTestImplementation(projects.core.database)
androidTestImplementation(projects.core.network)
androidTestImplementation(projects.core.testing)

androidTestImplementation(libs.androidx.test.core)
androidTestImplementation(libs.androidx.test.rules)
Expand Down
2 changes: 1 addition & 1 deletion build/reports/problems/problems-report.html
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@
<script type="text/javascript">
function configurationCacheProblems() { return (
// begin-report-data
{"diagnostics":[{"locations":[{"pluginId":"org.jetbrains.kotlin.android"}],"problem":[{"text":"The org.gradle.api.plugins.Convention type has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 9.0."}],"contextualLabel":"The org.gradle.api.plugins.Convention type has been deprecated.","documentationLink":"https://docs.gradle.org/8.13/userguide/upgrading_version_8.html#deprecated_access_to_conventions","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"the-org-gradle-api-plugins-convention-type-has-been-deprecated","displayName":"The org.gradle.api.plugins.Convention type has been deprecated."}]},{"locations":[{"taskPath":":feature:allbreeds:compileDebugJavaWithJavac"}],"problem":[{"text":"Java compilation warning"}],"severity":"WARNING","problemDetails":[{"text":"warning: [options] source value 8 is obsolete and will be removed in a future release"}],"contextualLabel":"source value 8 is obsolete and will be removed in a future release","problemId":[{"name":"java","displayName":"Java compilation"},{"name":"compilation","displayName":"Compilation"},{"name":"compiler-warn-option-obsolete-source","displayName":"Java compilation warning"}]},{"locations":[{"taskPath":":feature:allbreeds:compileDebugJavaWithJavac"}],"problem":[{"text":"Java compilation warning"}],"severity":"WARNING","problemDetails":[{"text":"warning: [options] target value 8 is obsolete and will be removed in a future release"}],"contextualLabel":"target value 8 is obsolete and will be removed in a future release","problemId":[{"name":"java","displayName":"Java compilation"},{"name":"compilation","displayName":"Compilation"},{"name":"compiler-warn-option-obsolete-target","displayName":"Java compilation warning"}]},{"locations":[{"taskPath":":feature:allbreeds:compileDebugJavaWithJavac"}],"problem":[{"text":"Java compilation warning"}],"severity":"WARNING","problemDetails":[{"text":"warning: [options] To suppress warnings about obsolete options, use -Xlint:-options."}],"contextualLabel":"To suppress warnings about obsolete options, use -Xlint:-options.","problemId":[{"name":"java","displayName":"Java compilation"},{"name":"compilation","displayName":"Compilation"},{"name":"compiler-warn-option-obsolete-suppression","displayName":"Java compilation warning"}]}],"problemsReport":{"totalProblemCount":4,"buildName":"DogBreed","requestedTasks":":app:assembleDebug","documentationLink":"https://docs.gradle.org/8.13/userguide/reporting_problems.html","documentationLinkCaption":"Problem report","summaries":[]}}
{"diagnostics":[{"locations":[{"pluginId":"org.jetbrains.kotlin.android"}],"problem":[{"text":"The org.gradle.api.plugins.Convention type has been deprecated."}],"severity":"WARNING","problemDetails":[{"text":"This is scheduled to be removed in Gradle 9.0."}],"contextualLabel":"The org.gradle.api.plugins.Convention type has been deprecated.","documentationLink":"https://docs.gradle.org/8.13/userguide/upgrading_version_8.html#deprecated_access_to_conventions","problemId":[{"name":"deprecation","displayName":"Deprecation"},{"name":"the-org-gradle-api-plugins-convention-type-has-been-deprecated","displayName":"The org.gradle.api.plugins.Convention type has been deprecated."}]}],"problemsReport":{"totalProblemCount":1,"buildName":"DogBreed","requestedTasks":"","documentationLink":"https://docs.gradle.org/8.13/userguide/reporting_problems.html","documentationLinkCaption":"Problem report","summaries":[]}}
// end-report-data
);}
</script>
Expand Down
2 changes: 1 addition & 1 deletion core/common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
4 changes: 2 additions & 2 deletions core/database/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":core:model"))
implementation(projects.core.model)
implementation(libs.hilt.android.testing)

androidTestImplementation(project(":core:testing"))
androidTestImplementation(projects.core.testing)
androidTestImplementation(kotlin("test"))

androidTestImplementation(libs.room.testing)
Expand Down
8 changes: 4 additions & 4 deletions core/testing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ dependencies {
api(libs.mockk)
api(libs.coroutine.test)

api(project(":core:model"))
api(project(":data:allbreeds"))
api(project(":data:breedDetails"))
api(project(":data:subbreeds"))
api(projects.core.model)
api(projects.data.allbreeds)
api(projects.data.breedDetails)
api(projects.data.subbreeds)

implementation(libs.hilt.android.testing)
implementation(libs.androidx.test.runner)
Expand Down
10 changes: 5 additions & 5 deletions data/allbreeds/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":core:network"))
implementation(project(":core:database"))
implementation(project(":core:model"))
implementation(project(":core:common"))
implementation(projects.core.network)
implementation(projects.core.database)
implementation(projects.core.model)
implementation(projects.core.common)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
8 changes: 4 additions & 4 deletions data/breedDetails/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":core:database"))
implementation(project(":core:common"))
implementation(project(":core:model"))
implementation(projects.core.database)
implementation(projects.core.common)
implementation(projects.core.model)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
8 changes: 4 additions & 4 deletions data/subbreeds/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":core:network"))
implementation(project(":core:common"))
implementation(project(":core:model"))
implementation(projects.core.network)
implementation(projects.core.common)
implementation(projects.core.model)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
8 changes: 4 additions & 4 deletions domain/allbreeds/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":data:allbreeds"))
implementation(project(":core:common"))
implementation(project(":core:model"))
implementation(projects.data.allbreeds)
implementation(projects.core.common)
implementation(projects.core.model)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
8 changes: 4 additions & 4 deletions domain/breedDetails/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":data:breedDetails"))
implementation(project(":core:common"))
implementation(project(":core:model"))
implementation(projects.data.breedDetails)
implementation(projects.core.common)
implementation(projects.core.model)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
8 changes: 4 additions & 4 deletions domain/favorites/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":data:breedDetails"))
implementation(project(":core:common"))
implementation(project(":core:model"))
implementation(projects.data.breedDetails)
implementation(projects.core.common)
implementation(projects.core.model)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
8 changes: 4 additions & 4 deletions domain/subbreeds/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":data:subbreeds"))
implementation(project(":core:common"))
implementation(project(":core:model"))
implementation(projects.data.subbreeds)
implementation(projects.core.common)
implementation(projects.core.model)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))
}
12 changes: 6 additions & 6 deletions feature/allbreeds/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ dependencies {
implementation(libs.hilt.core)
ksp(libs.hilt.compiler)

implementation(project(":domain:allbreeds"))
implementation(project(":core:designsystem"))
implementation(project(":core:model"))
implementation(project(":core:common"))
implementation(projects.domain.allbreeds)
implementation(projects.core.designsystem)
implementation(projects.core.model)
implementation(projects.core.common)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))

androidTestImplementation(project(":core:testing"))
androidTestImplementation(projects.core.testing)
androidTestImplementation(kotlin("test"))

androidTestImplementation(libs.compose.ui.test)
Expand Down
12 changes: 6 additions & 6 deletions feature/breedDetails/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ dependencies {
ksp(libs.hilt.compiler)
implementation(libs.kotlin.coroutine)

implementation(project(":domain:breedDetails"))
implementation(project(":core:designsystem"))
implementation(project(":core:model"))
implementation(project(":core:common"))
implementation(projects.domain.breedDetails)
implementation(projects.core.designsystem)
implementation(projects.core.model)
implementation(projects.core.common)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))

androidTestImplementation(project(":core:testing"))
androidTestImplementation(projects.core.testing)
androidTestImplementation(kotlin("test"))

androidTestImplementation(libs.compose.ui.test)
Expand Down
12 changes: 6 additions & 6 deletions feature/favorites/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ dependencies {

implementation(libs.kotlin.coroutine)

implementation(project(":domain:favorites"))
implementation(project(":core:designsystem"))
implementation(project(":core:model"))
implementation(project(":core:common"))
implementation(projects.domain.favorites)
implementation(projects.core.designsystem)
implementation(projects.core.model)
implementation(projects.core.common)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))

androidTestImplementation(project(":core:testing"))
androidTestImplementation(projects.core.testing)
androidTestImplementation(kotlin("test"))

androidTestImplementation(libs.compose.ui.test)
Expand Down
12 changes: 6 additions & 6 deletions feature/subbreeds/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ dependencies {

implementation(libs.kotlin.coroutine)

implementation(project(":domain:subbreeds"))
implementation(project(":core:designsystem"))
implementation(project(":core:model"))
implementation(project(":core:common"))
implementation(projects.domain.subbreeds)
implementation(projects.core.designsystem)
implementation(projects.core.model)
implementation(projects.core.common)

testImplementation(project(":core:testing"))
testImplementation(projects.core.testing)
testImplementation(kotlin("test"))

androidTestImplementation(project(":core:testing"))
androidTestImplementation(projects.core.testing)
androidTestImplementation(kotlin("test"))

androidTestImplementation(libs.compose.ui.test)
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ dependencyResolutionManagement {
}

rootProject.name = "DogBreed"
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

include(":app")
include(":core:network")
include(":core:database")
Expand Down