Hello! I want to use the KSVG library (<https://gi...
# javascript
r
Hello! I want to use the KSVG library (https://github.com/nwillc/ksvg) in a Kotlin/JS project. The maintainer attempted to make the library work with K/JS, but it doesn’t. Specifically, declaring the dependency works fine, but the library is never available in IntelliJ after the dependency is downloaded. What is wrong currently that is preventing the library from being consumed in K/JS?
s
How are you declaring the dependency?
It requires the following maven repo: https://dl.bintray.com/nwillc/maven
r
I’ve got
jcenter()
added in the repositories and
implementation("com.github.nwillc", "ksvg", "3.0.0")
declared in the main dependencies.
I’m not seeing any errors in retrieving the dependency, but if it fails silently I might be missing something.
s
Reach out to the library owners. That’d be my recommendation
r
The library owner has no idea how to make it work which brings me here. I was hoping someone could see from the structure of the library what might be failing or might have some tips to troubleshoot these silent errors.