Hi!
I'm investigating on the NDK and I want to create a "Spline" class that runs on native code. I have a C++ class from another project (with its .h and .cpp files) and I would like to use them in my Android project, because it offers more functionality than Android's "Path" class.
The problem is that I want to port some code in C++ but most examples are made in C. What changes do I need to make to .h and .cpp text files? Currently, my test app throws an UnsatisfiedLinkError when I call to a native method that has the same name and parameters of the Java class.
By the way, do you know any C++ example to get some inspiration?
Thank you!



