Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Flisar authored and Michael Flisar committed Oct 24, 2024
1 parent 252a549 commit d5b3644
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
7 changes: 7 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,11 @@ plugins {
alias(libs.plugins.kotlin.parcelize) apply false
alias(libs.plugins.compose) apply false
alias(libs.plugins.dokka) apply false
}

// this task fails in github action - so we disable it...
tasks.matching { task ->
task.name.contains("javaDocReleaseGeneration", ignoreCase = true)
}.configureEach {
enabled = false
}
7 changes: 0 additions & 7 deletions library/modules/billing/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,6 @@ val licenseUrl = "$github/blob/main/LICENSE"
// Setup
// -------------------

// this task fails in github action - so we disable it...
tasks.matching { task ->
task.name.contains("javaDocReleaseGeneration", ignoreCase = true)
}.configureEach {
enabled = false
}

android {

namespace = androidNamespace
Expand Down

0 comments on commit d5b3644

Please sign in to comment.