Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I import a native library (.so file) into Eclipse?

I downloaded the Android PDF Viewer source code and am trying to compile it in Eclipse. Instead of messing with Cygwin and recompiling the native C libraries, my friend said I can just extract the pre-compiled .so files from the APK here:

http://code.google.com/p/apv/downloads/detail?name=apv-0.3.1dev13.apk&can=2&q=

How exactly do I import these libpdfview2.so files into the eclipse project?

Updated: Eclipse gives the following error and will not run:

Archive for required library: 'lib/armeabi/libpdfview2.so' in project 'APV' cannot be read or is not a valid ZIP file

like image 462
Li_W Avatar asked Dec 27 '11 23:12

Li_W


People also ask

How do I view external Libraries in Eclipse?

Right-click this project folder, and select "Build Path", and then select "Configure Build Path..." Select "Java Build Path" on the left, and then the "Libraries" tab. Click the "Classpath" line, and then click the "Add External JARS..." button. Locate and select the "breadboards.


2 Answers

See how they set things up in the sample project: http://code.google.com/p/apv/source/browse/#hg%2Fpdfview

This NDK tutorial may also be useful in terms of helping you figure out how things work with the NDK: http://mobile.tutsplus.com/tutorials/android/ndk-tutorial/

The basics are this:

  1. The .so library files typically go in the project_root_dir/libs subfolder. Also, generally they are in further subfolders that describe their architecture (e.g. project_root_dir/libs/armeabi/libpdfview2.so).

  2. To use the library in an activity you add a static library loader to the activity as shown below:

    static
    {
    System.loadLibrary("pdfview2"); // Notice lack of lib prefix
    }

  3. You then define the native functions you are importing. You can recognize these functions thanks to the native keyword. Look in the file below to see what functions they import in the sample:

http://code.google.com/p/apv/source/browse/pdfview/src/cx/hell/android/pdfview/PDF.java?r=560343d2dad904c5c925b6cadf97b90430fd25f4

Here are some examples:

private native int parseBytes(byte[] bytes);  
private native int parseFile(String fileName);  
private native int parseFileDescriptor(FileDescriptor fd);  
like image 71
Theo Avatar answered Sep 19 '22 13:09

Theo


As mentioned another Stack Overflow thread about this topic switching off "Automatically refresh Resources and Assets folder on build" and "Force error when external jars contain native libraries" under Window/Preferences/Android/Build helps. At least it helped in my case!

And don't forget to put the so-file in 'lib s/armeabi' to have it availible at runtime.

Hope this helped others, also if it was too late for Li_W.

like image 28
Michi Avatar answered Sep 18 '22 13:09

Michi