I know that many questions are already asked on the topic: java.lang.UnsatisfiedLinkError. But the solutions provided by them not seem to solve my error. That is why I am here, asking for help.

Recently, I downloaded a program to stream video from android. It is downloaded from here(ohbee / android / streamer); Then I changed the ip address 192.168.1.100 on jni/streamer/src/streamer.cpp at line 116 to 192.168.255.255. Then I compiled it using android ndk using ndk-build. I got libstreamer.so in libs/armeabi. But on running the app and pressing the button for record and to start streaming, I get following error:

11-09 12:52:53.408: WARN/dalvikvm(9800): No implementation found for native Lob/android/Stream;.stream ()V
11-09 12:52:53.408: WARN/dalvikvm(9800): threadid=9: thread exiting with uncaught exception (group=0x4001d7d0)
11-09 12:52:53.408: ERROR/AndroidRuntime(9800): FATAL EXCEPTION: Thread-12
11-09 12:52:53.408: ERROR/AndroidRuntime(9800): java.lang.UnsatisfiedLinkError: stream
11-09 12:52:53.408: ERROR/AndroidRuntime(9800):     at ob.android.Stream.stream(Native Method)
11-09 12:52:53.408: ERROR/AndroidRuntime(9800):     at ob.android.Stream.run(Stream.java:22)
11-09 12:52:53.408: ERROR/AndroidRuntime(9800):     at java.lang.Thread.run(Thread.java:1096)
11-09 12:52:53.412: WARN/ActivityManager(2499):   Force finishing activity ob.android/.MainActivity 

If I use the libstreamer.so already on the libs folder when downloading the app, It works fine. But, since it is predefined for only one IP address, I cannot use that. I need to change the IP. I am using fedora 15 and android-ndk-r6 and eclipse Indigo(If it helps...). Would you please tell me what I miss?

link|improve this question

80% accept rate
Please post the method in native code you use and the call from java. I guess you just need to adapt the method names (especially the JNI one) to you class structure. – redfalcon Nov 9 '11 at 11:42
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.