Android / Adobe Crash Report: java.lang.UnsatisfiedLinkError

I am getting this error inside Google "Crashes and ANRs". Application built with Adobe Air and packaged as an inactive runtime.

java.lang.UnsatisfiedLinkError: nativeSurfaceCreated
at com.adobe.air.AIRWindowSurfaceView.nativeSurfaceCreated(Native Method)
at com.adobe.air.AIRWindowSurfaceView.surfaceCreated(AIRWindowSurfaceView.java:719)
at android.view.SurfaceView.updateWindow(SurfaceView.java:545)
at android.view.SurfaceView.access$000(SurfaceView.java:81)
at android.view.SurfaceView$3.onPreDraw(SurfaceView.java:169)
at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:693)
at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1731)
at android.view.ViewRootImpl.handleMessage(ViewRootImpl.java:2583)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:4508)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:809)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:576)
at dalvik.system.NativeStart.main(Native Method)

      

Does anyone know what this means?

+3


source to share


1 answer


UnsatisfiedLinkError

for Java usually means you tried to load a library named nativeSurfaceCreated

. Basically your code is called the method that called the method and so on, and some code that someone else wrote called the method of its own. This native method loaded a library with a name nativeSurfaceCreated

that you don't have. This is usually packaged as a dll on Windows or a Linux file. If you can find this dll / so file, you can run whatever you are using.



0


source







All Articles