Hello, does anyone knows how I can add a shared li...
# native
i
Hello, does anyone knows how I can add a shared library as a dependency to my project ? I have a .so file, and I'd like to do something like
implementation files("libTest.so")
I use nokee plugins, more specifically dev.nokee.c-application
d
At the moment, you should use
libs.from('libTest.so')
on the
linkTask
so it should look like this:
Copy code
application {
  binaries.configureEach {
    linkTask.configure { libs.from('libTest.so') }
  }
}