From my build.gradle:
sourceSets {
main {
java { srcDir 'mySrc' }
resources { srcDirs = ['assets', './natives'] } //natives includes a dll
}
}
test {
systemProperty "java.library.path", "./natives" //also tried with libs, ., even absolute path don't work
}
gradle run
always complain that can’t find the lib.
Any help would be appreciated, thanks!