quittle / gradle-svg-2-android-vector

Gradle plugin for automatic conversion of SVG's to Android Vector graphics
Apache License 2.0
13 stars 1 forks source link

NoSuchMethodError #177

Closed gfred closed 1 year ago

gfred commented 1 year ago

Since some updates ago, this library does not work anymore, because the API for parseSvgToXml has changed. From java.lang.String com.android.ide.common.vectordrawable.Svg2Vector.parseSvgToXml(java.io.File, java.io.OutputStream) to java.lang.String com.android.ide.common.vectordrawable.Svg2Vector.parseSvgToXml(java.nio.file.Path, java.io.OutputStream)

Would be cool to get this updated :) Thank you!

quittle commented 1 year ago

Thank you for letting me know. I had no idea but I don't actively work on Android stuff much these days so that's hardly a surprise.

I'll try to take a look into it and fix it

quittle commented 1 year ago

I've got a fix but am hitting some other issues as I'm upgrading a bunch of deps at the same time

quittle commented 1 year ago

This should now be fixed in version 0.1.0 of the plugin

quittle commented 1 year ago

@gfred Could you please try out the new version and confirmed it resolved your issue?