Hello, I am a beginner programmer and I am attempting to use the android NDK.
Is there a way to return an array (in my case an int[]) created in JNI to java? If so, please provide a quick example of the JNI function that would do this.
-Thanks
|
|
|||||||||
|
|
|
If you've examined the documentation and still have questions that should be part of your initial question. In this case, the JNI function in the example creates a number of arrays. The outer array is comprised of an 'Object' array creating with the JNI function The following for loop creates the inner arrays which are of type int[] using the JNI function Since you want to return an int array, then your code is going to look something like this:
|
||||||
|