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?

Était-ce utile?

La 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.

Autres conseils

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top