Macro wrote:
[...]
> My shared library name is "libNativeAdd.so", but system doesn't find
> it ?
> Need I register it somewhere?

Your log doesn't show you loading the library --- you are calling
System.loadLibrary("NativeAdd"), aren't you?

If there are unresolved symbols, loadLibrary() will throw
UnsatisfiedLinkError. If your library loads but doesn't contain an
appropriate implementation of a native method, you'll get
UnsatisfiedLinkError when you call the native method (which I think is
what's happening here).

-- 
David Given
[EMAIL PROTECTED]

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to