I'm trying to use the plugin's new NDK support but failing so far:
My existing kludge solution works fine in 0.6.+, in which I run ndk-build by hand for the sources in src/main/jni and have a task to include the .so files in a jar automatically. In 0.7.+, the gradle plugin insists on trying to build my ndk sources.
I renamed the path to src/main/jni-noconflict and hacked the build to make it work (specifying LOCAL_PATH for each source file, specifying NDK_APPLICATION_MK when running ndk-build), but is there a way to simply disable the automatic ndk detection?