I'm building c++ code for Android using NDK. My code will be used as an external SDK for app developers.
Is it possible to access the application's data path from the native code?
One option is to use JNI to call into the JVM and look up this information, however since i am writing library code, i am not sure my SDK won't be used in an all native applicaiton (NativeActivity).
What is the best option for achieving this?