gradle-natives
gradle-natives copied to clipboard
Tests should run after unpack in build
In my usage of the plugin I found that it has issues when libraries are used in tests - it seems that it runs after the tests. Need to configure unpackNatives
to run before test
.
The workaround is simply to build without tests:
gradle clean build unpackNatives -x test
and then run the tests
gradle test
but this is annoying.