-
Notifications
You must be signed in to change notification settings - Fork 37
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
Gradle Isolated Projects Support #497
Comments
I was able to fix the problem related to this issue. I believe this doesn't affect the user's project, but there are some
|
I created an issue for this subtask. |
@trevjonez |
Just ran it again as far as it can go and the report no longer has anything from it in razzi. Down to primarily KSP/Hilt as the two big sources of issue now. Might be good to leave this open a bit longer so people that are able to get further in the build have a place to dump additional info? |
I am starting to work thru issues coming from constraints imposed by the
Isolated Projects
feature coming in gradle. The razzi plugin seems to have some property lookups that are likely easily fixed by using some alternative APIs.roborazzi/include-build/roborazzi-gradle-plugin/src/main/java/io/github/takahirom/roborazzi/RoborazziPlugin.kt
Line 221 in 2e4b3eb
It seems the typical project level properties lookups will walk the project tree causing a break. I believe it should be safe to migrate that lookup to using the providers api.
providers.gradlePropertiesPrefixedBy("roborazzi").get().etc()
There may be other issues still but this seems to be all I can get from the issue report as things are today.
The text was updated successfully, but these errors were encountered: