I'm working on a multiplatform NDArray implementation with JNI, where K/Native handles the JNI part:
https://github.com/Martmists-GH/ndarray.simd
How would I go about adding Android support to this? It should be configured to already include all of the relevant C++ code using -Xcompile-source, but I'm not sure how to distribute the natives in my android releases.
On desktop I just hook into desktopProcessResources, but I couldn't find an equivalent for Android.