Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

debug/build_issue #225

Merged
merged 4 commits into from
Sep 18, 2024
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
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ plugins {
}
}

gradle.startParameter.excludedTaskNames.addAll(listOf(":build-logic:convention:testClasses"))

// Run it with: gradle assembleRelease -PcomposeCompilerReports=true
subprojects {
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ kotlin.code.style=official
android.nonTransitiveRClass=true
org.gradle.parallel=true
org.gradle.daemon=true
org.gradle.unsafe.configuration-cache=true
org.gradle.unsafe.configuration-cache=false
android.defaults.buildfeatures.buildconfig=true
android.nonFinalResIds=false
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ androidGradlePlugin = "8.6.0"

ktx = "1.13.1"

composeBOM = "2024.09.00"
composeBOM = "2024.09.01"
composeActivity = "1.9.2"
composeCoil = "2.6.0"
composeCoil = "2.7.0"
composeMaterial3 = "1.3.0"

detekt = "1.23.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ fun MarketItem(
}
},
positionalThreshold = { positionalThreshold },
initialValue = SwipeToDismissBoxValue.EndToStart
initialValue = SwipeToDismissBoxValue.EndToStart,
)

if (showFavoriteList) {
Expand Down
Loading