I need to use some native c/c++ in my project, so I need to use the NDK. Is there an easy way to set it up in eclipse?
Thanks.
|
I need to use some native c/c++ in my project, so I need to use the NDK. Is there an easy way to set it up in eclipse? Thanks. |
|||
|
|
|
There are following steps 1 : Create a jni folder in your project directory 2 : Create a file name Android.mk in your newly created folder jni and create a new file of C or C++, lets we consider hear we use C file and name of file is MyNativeC.c 3: now type following code in Android.mk file
4 now open MyNativeC.c file and create two method which you want to call from your android code(from your Activity) hear we create following code
5 now edit your activity where you want to call the native code, first create a static block where we have to load the library of native code. hear we show the code of my activity name is MainActivity.java
6 Now first compile the c code, for compile c code first you have to NDK development kit, now open run. and type cmd now go to project path
after that typw the path of the my NDK's ndk-build file path
now we press enter the automatic it create libs directory in your project
7 If you see in your project, there are libs and obj created automatically. 8.Refresh (right Click) the JNI folder (refresh it every time you build using teh ndk-build,this actually loads the newly built shared library in the libs folder.) 9.Now run your android project, when press the button the it will show you the addition thanks |
||||
|
|
|
Ok, after I spent some time experimenting, I can say that the best way for a beginner to start using NDK in eclipse is first to go over this tutorial: http://marakana.com/forums/android/examples/49.html and simply create the necessary files for the jni folder (but don't do anything else). Then you should read this http://mobilepearls.com/labs/ndk-builder-in-eclipse/ and follow the steps. Then you are ready. |
|||
|
|
|
|||||||
|