We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Description The paparazzi.test.resources system property points to the output of writeResourcesTask but it's not registered as an input.
paparazzi.test.resources
writeResourcesTask
Steps to Reproduce When using test distribution from Develocity it will fail to run because that file isn't uploaded.
Expected behavior All inputs should be registered.
Additional information:
Screenshots n/a
The text was updated successfully, but these errors were encountered:
Fix is simple, just add this to the test task configure block:
inputs .file(writeResourcesTask.flatMap { it.paparazziResources }) .withPropertyName("paparazzi.test.resources") .withPathSensitivity(PathSensitivity.NONE)
Sorry, something went wrong.
layoutlibResourcesFileCollection is also missing as a task input. Can be fixed by adding:
layoutlibResourcesFileCollection
inputs .files(layoutlibResourcesFileCollection) .withPropertyName("paparazzi.resources") .withPathSensitivity(PathSensitivity.NONE)
No branches or pull requests
Description
The
paparazzi.test.resources
system property points to the output ofwriteResourcesTask
but it's not registered as an input.Steps to Reproduce
When using test distribution from Develocity it will fail to run because that file isn't uploaded.
Expected behavior
All inputs should be registered.
Additional information:
Screenshots
n/a
The text was updated successfully, but these errors were encountered: