-
Notifications
You must be signed in to change notification settings - Fork 274
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
Problem with GString in DescriptorSetOptions.path and Gradle Kotlin DSL #359
Comments
Sorry for the delayed response, since I was not quite familiar with GString stuff and did not know an answer to your question. I believe we are missing some Kotlin DSL interoperability considerations for |
#394 seems to fix this issue in an immediate way. I would keep this issue open for investigating |
Would be good to get a release with this in it as there isn't a viable workaround other than building from master. |
Fixed by #394 and it's working good enough. |
Hello,
Maybe I'm missing something obvious, but when trying to set
DescriptorSetOptions.path
to the needed path string, the compiler is complaining about a type mismatch:For example:
since
it.descriptorSetOptions.path
is of typeGString
, by just doing above will not work, but instead I need to add it like:which seems a bit too implementation specific, and should not be the correct usage of this interface IMO.
Is there a better way of doing this or it's a drawback of using Kotlin DSL with this plugin?
Thanks in advance.
The text was updated successfully, but these errors were encountered: