1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-11-16 03:59:03 +00:00
simplesshd/crash.20201225
Greg Alexander 308753ce71 Made a pass over all the crashes I've got from the play developer console.
Made no headway on any of them, unfortunately.
2021-01-17 22:35:13 -05:00

34 lines
2.0 KiB
Plaintext

java.lang.UnsatisfiedLinkError:
at java.lang.Runtime.loadLibrary0 (Runtime.java:1016)
at java.lang.System.loadLibrary (System.java:1669)
at org.galexander.sshd.SimpleSSHDService.<clinit> (SimpleSSHDService.java:185)
at org.galexander.sshd.SimpleSSHDService.is_started (SimpleSSHDService.java:86)
at org.galexander.sshd.SimpleSSHD.update_startstop_prime (SimpleSSHD.java:107)
at org.galexander.sshd.SimpleSSHD.onResume (SimpleSSHD.java:49)
at android.app.Instrumentation.callActivityOnResume (Instrumentation.java:1412)
at android.app.Activity.performResume (Activity.java:7302)
at android.app.ActivityThread.performResumeActivity (ActivityThread.java:3776)
at android.app.ActivityThread.handleResumeActivity (ActivityThread.java:3816)
at android.app.servertransaction.ResumeActivityItem.execute (ResumeActivityItem.java:51)
at android.app.servertransaction.TransactionExecutor.executeLifecycleState (TransactionExecutor.java:145)
at android.app.servertransaction.TransactionExecutor.execute (TransactionExecutor.java:70)
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1808)
at android.os.Handler.dispatchMessage (Handler.java:106)
at android.os.Looper.loop (Looper.java:193)
at android.app.ActivityThread.main (ActivityThread.java:6669)
at java.lang.reflect.Method.invoke (Native Method)
at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:518)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:858)
2021/01/17 - This has been reported from two different users, both on
OnePlus3 phone running Android 9. It was reported both with version 16
and 24 of SimpleSSHD. It seems to be from where SimpleSSHDService tries
to load simplesshd-jni, which is the core JNI for the whole thing and the
only one that is linked in the normal way. It is a normal processor
(snapdragon 820).
Since it's just the one kind of phone, I think I'm gonna ignore it. It's
probably some problem with how libc or JNI library is linked, but I can't
imagine what that problem is.