Android ndk java.lang.UnsatisfiedLinkError: nativeStart?

You took the aacplayer classes from original package com.spoledge. Aacplayer and dropped them into your own package com.example. Xmlparsingex (probably originated in some Android example).

You can't do that . Pure Java classes will survive it (supported by Eclipse refactoring), but classes with native methods won't. Native methods are bound to specific function names in native library.

If the native library libaacarray.so exports a function Java_com_spoledge_aacplayer_ArrayDecoder_nativeStart then the corresponding java class must be com.spoledge.aacplayer. ArrayDecoder and there is no way around it. Unless you want to tweak and recompile the native library too.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions