Question

I have downloaded the latest version of jnetpcap and added it to my android project in eclipse as "Add external JAR". But when I'm running the program the application crashes immediately on my emulator and I receive the following error in the log:

java.lang.NoClassDefFoundError: org.jnetpcap.Pcap

Does anyone know how to solve this problem?

Was it helpful?

Solution

You need to compile jnetpcap c files as shared library (.so) with the Android NDK first. Then you need to create your own JNI or use an existing one like this made available in the official website related to this thread. Look here.

OTHER TIPS

Did you export the library? In the Build Path of eclipse on the 4th page, make sure that it exists above any code that may use it, and make sure it's checked.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top