Getting following after updating to Canary 14. An...
# android-studio
j
Getting following after updating to Canary 14. Anyone else see this?
Copy code
Execution failed for task ':common:packageDebugResources'.
> org/apache/batik/w3c/dom/ElementTraversal
So, wasn't seeing this issue for another project and turns out difference is use of SQLDelight....if I comment out use of that then it's building fine.
n
@John O'Reilly did you find out anything more about the issue. I experienced the same with moko-resources.
Copy code
Execution failed for task ':common:generateMRcommonMain'.
> org/apache/batik/w3c/dom/ElementTraversal
And
xml-apis:xml-apis:1.4.0
fixed in my case also. @alex009 fyi
j
No, afraid not
b
I've been dealing with the same issue lately. Seems like I can't use both SQLDelight and Jetpack Compose. SQLDelight breaks w/ the latest canary version of AS and the corresponding Gradle plugin. So I reverted to AS 4.1 stable. But Jetpack Compose can only be used with Canary versions of AS. I really hope they fix this soon. 🤞
n
@Brady Aiello did you try adding
classpath ​xml-apis:xml-apis:1.4.01​
to the buildscript?
👍 1
b
Yes, that did the trick. When I first read this thread, I skimmed it way too fast.
I have no idea why this magic line fixes it. But I'm glad someone figured it out!