Skip to content

Commit

Permalink
Merge pull request #104 from kiwix/Fixes#103
Browse files Browse the repository at this point in the history
Fixed: The CD is failing because the new gradle version gives an error for the lib:generateMetadataFileForReleasePublication task.
  • Loading branch information
MohitMaliFtechiz authored Jun 6, 2024
2 parents 374f293 + 3bdbdbd commit cd8ac21
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ afterEvaluate {
}
}
}

// Set dependency for the metadata file generation task
tasks.withType(GenerateModuleMetadata).tap {
configureEach {
dependsOn tasks.named("androidSourcesJar")
}
}
}

signing {
Expand Down

0 comments on commit cd8ac21

Please sign in to comment.