0

Can anyone tell me with an .so file given we need to calla jni method in app? The .so file contains implementation methods in C. Thanks in advance.

midhunhk
  • 5,560
  • 7
  • 52
  • 83
rajeswari
  • 187
  • 2
  • 3
  • 9
  • This is not so trivial question ... I get answer in 10 days ! You can try to do something or to start doing something and if you have questions I will always ready to help ! – Viktor Apoyan Jun 23 '11 at 14:00
  • Thanks for ur respose .i want to use a .so file which is given by client and call the methods in that .so file. – rajeswari Jun 23 '11 at 15:07
  • hey @rajeswari did you find any way to use the .so file and call the methods in that. I am trying to used a .so file to call native methods but getting Exception of no implementation found. – Dory Jun 07 '13 at 07:41
  • @rajeswari did you got a answer for question i am facing also the same difficulty. – Abhijit Chakra Nov 06 '15 at 06:18

1 Answers1

4

use this code..

 public class NativeLib {

      static {
        System.loadLibrary("ndk_demo");
      }

      /** 
       * Adds two integers, returning their sum
       */
      public native int add( int v1, int v2 );

      /**
       * Returns Hello World string
       */
      public native String hello();
    }

for more info..http://marakana.com/forums/android/examples/49.html

Sujit
  • 10,512
  • 9
  • 40
  • 45