Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I added missing library #114

Closed
wants to merge 1 commit into from
Closed

Conversation

salihberat
Copy link

without
#include <android_native_app_glue.h>
library,
i was taking incomplete definitions code error
see: #113

after reverse engineering (i added and deleted many libraries and ordered to WSL 'make run' and as conclusion i discovered essential library is glue library), i found which library is missing

I still have another error, but it is fix of this error

without
#include <android_native_app_glue.h>
library,
i was taking incomplete definitions code error
see: cntools#113

after reverse engineering (i added and deleted many libraries and ordered to WSL 'make run' and as conclusion i discovered essential library is glue library), i found which library is missing

I still have another error, but it is fix of this error
@cnlohr
Copy link
Member

cnlohr commented Jan 3, 2025

This may fix your specific case but it is definitely incorrect, overall.

CNFG_IMPLEMENTATION MUST be before you include "rawdraw_sf.h"

The example shows typical usage, which does not include rawdraw in the build system, it's a header-only library.

@cnlohr cnlohr closed this Jan 3, 2025
@salihberat
Copy link
Author

i used
#define CNFG_IMPLEMENTATION
#include <android_native_app_glue.h>
#include "rawdraw_sf.h"

and crashed again

@cnlohr
Copy link
Member

cnlohr commented Jan 3, 2025

I can believe that, but that would mean that it's an issue with what files you're including in the build system.

@salihberat
Copy link
Author

files

01-03 22:42:56.268 18567 18567 E rg.yourorg.fos: Unknown bits set in runtime_flags: 0x8000
01-03 22:42:56.292 20553 21427 W OomAdjuster: Fallback pre-set sched group to default: not expected top priority
01-03 22:42:56.338 18567 18567 W System  : ClassLoader referenced unknown path:
01-03 22:42:56.489 18567 18567 W NativeActivity: NativeActivity LoadNativeLibrary("/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so") failed: dlopen failed: cannot locate symbol "HandleSuspend" referenced by "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so"...
01-03 22:42:56.490 18567 18567 D AndroidRuntime: Shutting down VM
01-03 22:42:56.494 18567 18567 E AndroidRuntime: FATAL EXCEPTION: main
01-03 22:42:56.494 18567 18567 E AndroidRuntime: Process: org.yourorg.foss, PID: 18567
01-03 22:42:56.494 18567 18567 E AndroidRuntime: java.lang.UnsatisfiedLinkError: Unable to load native library "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so": dlopen failed: cannot locate symbol "HandleSuspend" referenced by "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so"...
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.NativeActivity.onCreate(NativeActivity.java:178)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.Activity.performCreate(Activity.java:7824)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.Activity.performCreate(Activity.java:7813)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1306)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3245)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3409)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2016)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.os.Handler.dispatchMessage(Handler.java:107)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.os.Looper.loop(Looper.java:214)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at android.app.ActivityThread.main(ActivityThread.java:7356)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at java.lang.reflect.Method.invoke(Native Method)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:491)
01-03 22:42:56.494 18567 18567 E AndroidRuntime:        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:940)
01-03 22:42:56.499 20553 18590 I DropBoxManagerService: add tag=data_app_crash isTagEnabled=true flags=0x2
01-03 22:42:56.499 20553 21427 W ActivityTaskManager:   Force finishing activity org.yourorg.foss/android.app.NativeActivity
01-03 22:42:56.510 20553 20573 I ActivityManager: Showing crash dialog for package org.yourorg.foss u0
01-03 22:42:56.568 20553 22651 D mali_winsys: EGLint new_window_surface(egl_winsys_display*, void*, EGLSurface, EGLConfig, egl_winsys_surface**, egl_color_buffer_format*, EGLBoolean) returns 0x3000,  [812x520]-format:1
01-03 22:42:56.724 20553 20573 W Looper  : Slow dispatch took 179ms android.ui h=android.view.Choreographer$FrameHandler c=android.view.Choreographer$FrameDisplayEventReceiver@f8b1058 m=0
01-03 22:42:56.774 20714 20714 D ImageWallpaper: wallpaper visibility changes to: false
01-03 22:42:56.789  2430  2430 E Layer   : [Surface(name=AppWindowToken{76313ad token=Token{7a338c4 ActivityRecord{29cf7d7 u0 org.yourorg.foss/android.app.NativeActivity t7887}}})/@0x99b6248 - animation-leash#0] No local sync point found
01-03 22:42:56.789  2430  2430 E Layer   : [Surface(name=AppWindowToken{76313ad token=Token{7a338c4 ActivityRecord{29cf7d7 u0 org.yourorg.foss/android.app.NativeActivity t7887}}})/@0x99b6248 - animation-leash#0] No local sync point found
01-03 22:42:56.789  2430  2430 E Layer   : [Surface(name=AppWindowToken{7445eac token=Token{fa4e45f ActivityRecord{cff4fe u0 com.android.launcher3/.lineage.LineageLauncher t7826}}})/@0x7703485 - animation-leash#0] No local sync point found
01-03 22:42:56.789  2430  2430 E Layer   : [Surface(name=AppWindowToken{7445eac token=Token{fa4e45f ActivityRecord{cff4fe u0 com.android.launcher3/.lineage.LineageLauncher t7826}}})/@0x7703485 - animation-leash#0] No local sync point found
01-03 22:42:56.797  2430  2477 E BufferQueueProducer: [com.android.launcher3/com.android.launcher3.lineage.LineageLauncher#0] disconnect: not connected (req=1)
01-03 22:42:56.797  3485  3555 W libEGL  : EGLNativeWindowType 0xd1b8f708 disconnect failed
01-03 22:42:57.001 20553 20575 W ActivityTaskManager: Activity top resumed state loss timeout for ActivityRecord{29cf7d7 u0 org.yourorg.foss/android.app.NativeActivity t7887 f}
01-03 22:42:57.003 20553 20575 W ActivityTaskManager: Activity pause timeout for ActivityRecord{29cf7d7 u0 org.yourorg.foss/android.app.NativeActivity t7887 f}
01-03 22:42:57.046  3485  3555 D mali_winsys: EGLint new_window_surface(egl_winsys_display*, void*, EGLSurface, EGLConfig, egl_winsys_surface**, egl_color_buffer_format*, EGLBoolean) returns 0x3000,  [720x1280]-format:1
01-03 22:42:57.063 20714 20714 D ImageWallpaper: wallpaper visibility changes to: true
01-03 22:42:57.221  2412  2412 W [email protected]: type=1400 audit(0.0:166933): avc: denied { read } for name="type" dev="sysfs" ino=12832 scontext=u:r:hal_health_default:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0
01-03 22:42:57.432  2430 18417 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(3)
01-03 22:42:57.456  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] first frame after HWC_2_GLES
01-03 22:42:57.456  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] GLES_2_HWC by high FPS(5)
01-03 22:42:57.552 20553 21427 W ActivityTaskManager:   Force finishing activity org.yourorg.foss/android.app.NativeActivity
01-03 22:42:57.554  2430  3538 E BufferQueueProducer: [Application Error: org.yourorg.foss#0] disconnect: not connected (req=1)
01-03 22:42:57.554 20553 22651 W libEGL  : EGLNativeWindowType 0xb6f46c08 disconnect failed
01-03 22:42:57.556 20553 22651 D OpenGLRenderer: endAllActiveAnimators on 0xaeca9880 (RippleDrawable) with handle 0xd1b7dda0
01-03 22:42:57.566 20553 21427 I ActivityManager: Killing 18567:org.yourorg.foss/u0a252 (adj 900): crash
01-03 22:42:57.574 20553 22828 E InputDispatcher: Window handle Window{8941caf u0 Application Error: org.yourorg.foss} has no registered input channel
01-03 22:42:57.628 20490 20490 I Zygote  : Process 18567 exited due to signal 9 (Killed)
01-03 22:42:57.644 20553 20583 I libprocessgroup: Successfully killed process cgroup uid 10252 pid 18567 in 76ms
01-03 22:42:57.731  2430  2430 E display : [PrimaryDisplay] window of layer 3 was not assigned (window_index: -1)
01-03 22:42:58.090 20553 20626 I ActivityTaskManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=org.yourorg.foss/android.app.NativeActivity bnds=[23,760][191,956]} from uid 10093
01-03 22:42:58.090  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(3)
01-03 22:42:58.108  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] first frame after HWC_2_GLES
01-03 22:42:58.108  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] GLES_2_HWC by high FPS(5)
01-03 22:42:58.130 20490 20490 D Zygote  : Forked child process 18591
01-03 22:42:58.139 18591 18591 I rg.yourorg.fos: Late-enabling -Xcheck:jni
01-03 22:42:58.140 20553 20582 I ActivityManager: Start proc 18591:org.yourorg.foss/u0a252 for pre-top-activity {org.yourorg.foss/android.app.NativeActivity}
01-03 22:42:58.131 18591 18591 W main    : type=1400 audit(0.0:166934): avc: denied { write } for name="tasks" dev="tmpfs" ino=7456 scontext=u:r:zygote:s0 tcontext=u:object_r:device:s0 tclass=file permissive=0 app=org.yourorg.foss
01-03 22:42:58.185 18591 18591 E rg.yourorg.fos: Unknown bits set in runtime_flags: 0x8000
01-03 22:42:58.205 20553 20626 W OomAdjuster: Fallback pre-set sched group to default: not expected top priority
01-03 22:42:58.253 18591 18591 W System  : ClassLoader referenced unknown path:
01-03 22:42:58.407 18591 18591 W NativeActivity: NativeActivity LoadNativeLibrary("/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so") failed: dlopen failed: cannot locate symbol "HandleSuspend" referenced by "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so"...
01-03 22:42:58.408 18591 18591 D AndroidRuntime: Shutting down VM
01-03 22:42:58.412 18591 18591 E AndroidRuntime: FATAL EXCEPTION: main
01-03 22:42:58.412 18591 18591 E AndroidRuntime: Process: org.yourorg.foss, PID: 18591
01-03 22:42:58.412 18591 18591 E AndroidRuntime: java.lang.UnsatisfiedLinkError: Unable to load native library "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so": dlopen failed: cannot locate symbol "HandleSuspend" referenced by "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so"...
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.NativeActivity.onCreate(NativeActivity.java:178)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.Activity.performCreate(Activity.java:7824)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.Activity.performCreate(Activity.java:7813)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1306)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3245)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3409)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2016)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.os.Handler.dispatchMessage(Handler.java:107)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.os.Looper.loop(Looper.java:214)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at android.app.ActivityThread.main(ActivityThread.java:7356)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at java.lang.reflect.Method.invoke(Native Method)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:491)
01-03 22:42:58.412 18591 18591 E AndroidRuntime:        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:940)
01-03 22:42:58.418 20553 18615 I DropBoxManagerService: add tag=data_app_crash isTagEnabled=true flags=0x2
01-03 22:42:58.418 20553 26072 W ActivityTaskManager:   Force finishing activity org.yourorg.foss/android.app.NativeActivity
01-03 22:42:58.426 20553 20573 I ActivityManager: Showing crash dialog for package org.yourorg.foss u0
01-03 22:42:58.487 20553 22651 D mali_winsys: EGLint new_window_surface(egl_winsys_display*, void*, EGLSurface, EGLConfig, egl_winsys_surface**, egl_color_buffer_format*, EGLBoolean) returns 0x3000,  [812x520]-format:1
01-03 22:42:58.656 20553 20573 W Looper  : Slow dispatch took 199ms android.ui h=android.view.Choreographer$FrameHandler c=android.view.Choreographer$FrameDisplayEventReceiver@f8b1058 m=0
01-03 22:42:58.657 20553 20573 W Looper  : Slow delivery took 203ms android.ui h=com.android.server.wm.DisplayPolicy$PolicyHandler c=com.android.server.wm.-$$Lambda$DisplayPolicy$qQY9m_Itua9TDy-Nk3zzDxvjEwE@e5fca5a m=0
01-03 22:42:58.664 20553 20573 W Looper  : Drained
01-03 22:42:58.693 20714 20714 D ImageWallpaper: wallpaper visibility changes to: false
01-03 22:42:58.711  2430  2726 E BufferQueueProducer: [com.android.launcher3/com.android.launcher3.lineage.LineageLauncher#0] disconnect: not connected (req=1)
01-03 22:42:58.712  3485  3555 W libEGL  : EGLNativeWindowType 0xd1b8f708 disconnect failed
01-03 22:42:58.919 20553 20575 W ActivityTaskManager: Activity top resumed state loss timeout for ActivityRecord{1aab56d u0 org.yourorg.foss/android.app.NativeActivity t7888 f}
01-03 22:42:58.921 20553 20575 W ActivityTaskManager: Activity pause timeout for ActivityRecord{1aab56d u0 org.yourorg.foss/android.app.NativeActivity t7888 f}
01-03 22:42:58.980  3485  3555 D mali_winsys: EGLint new_window_surface(egl_winsys_display*, void*, EGLSurface, EGLConfig, egl_winsys_surface**, egl_color_buffer_format*, EGLBoolean) returns 0x3000,  [720x1280]-format:1
01-03 22:42:59.016 20714 20714 D ImageWallpaper: wallpaper visibility changes to: true
01-03 22:42:59.132 20553 20574 I DropBoxManagerService: add tag=system_app_strictmode isTagEnabled=true flags=0x2
01-03 22:42:59.142 20553 20574 I DropBoxManagerService: add tag=system_app_strictmode isTagEnabled=true flags=0x2
01-03 22:42:59.219 20553 26072 W ActivityTaskManager:   Force finishing activity org.yourorg.foss/android.app.NativeActivity
01-03 22:42:59.221  2430  3015 E BufferQueueProducer: [Application Error: org.yourorg.foss#0] disconnect: not connected (req=1)
01-03 22:42:59.221 20553 22651 W libEGL  : EGLNativeWindowType 0xd1bb2328 disconnect failed
01-03 22:42:59.221 20553 22651 D OpenGLRenderer: endAllActiveAnimators on 0xaedbcc00 (RippleDrawable) with handle 0xd1b7e210
01-03 22:42:59.225 20553 20626 E InputDispatcher: Window handle Window{e0d1a05 u0 Application Error: org.yourorg.foss} has no registered input channel
01-03 22:42:59.234 20553 26072 I ActivityManager: Killing 18591:org.yourorg.foss/u0a252 (adj 900): crash
01-03 22:42:59.296 20490 20490 I Zygote  : Process 18591 exited due to signal 9 (Killed)
01-03 22:42:59.314 20553 20583 I libprocessgroup: Successfully killed process cgroup uid 10252 pid 18591 in 78ms
01-03 22:42:59.400  2430  2430 E display : [PrimaryDisplay] window of layer 3 was not assigned (window_index: -1)
01-03 22:42:59.736  2430 18417 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(0)
01-03 22:43:00.008 20714 20714 D KeyguardClockSwitch: Updating clock: 22:43
01-03 22:43:00.026  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] first frame after HWC_2_GLES
01-03 22:43:00.027  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] GLES_2_HWC by high FPS(5)
01-03 22:43:00.438  2430 18417 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(0)
01-03 22:43:02.571  2412  2412 W [email protected]: type=1400 audit(0.0:166935): avc: denied { read } for name="type" dev="sysfs" ino=12832 scontext=u:r:hal_health_default:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=0
01-03 22:43:02.630  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] first frame after HWC_2_GLES
01-03 22:43:02.630  2430  2430 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] GLES_2_HWC by high FPS(5)
01-03 22:43:02.944  2430 18417 I display : [PrimaryDisplay] [DYNAMIC_RECOMP] HWC_2_GLES by low FPS(3)

@salihberat
Copy link
Author

this place would be more easy to read

01-03 22:42:53.182 18542 18542 W NativeActivity: NativeActivity LoadNativeLibrary("/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so") failed: dlopen failed: cannot locate symbol "HandleSuspend" referenced by "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so"...
01-03 22:42:53.183 18542 18542 D AndroidRuntime: Shutting down VM
01-03 22:42:53.187 18542 18542 E AndroidRuntime: FATAL EXCEPTION: main
01-03 22:42:53.187 18542 18542 E AndroidRuntime: Process: org.yourorg.foss, PID: 18542
01-03 22:42:53.187 18542 18542 E AndroidRuntime: java.lang.UnsatisfiedLinkError: Unable to load native library "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so": dlopen failed: cannot locate symbol "HandleSuspend" referenced by "/data/app/org.yourorg.foss-5SmnModuU05bjRQKsmSD1A==/lib/arm/libfoss.so"...
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.NativeActivity.onCreate(NativeActivity.java:178)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.Activity.performCreate(Activity.java:7824)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.Activity.performCreate(Activity.java:7813)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1306)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3245)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3409)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:83)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:135)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:95)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2016)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.os.Handler.dispatchMessage(Handler.java:107)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.os.Looper.loop(Looper.java:214)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at android.app.ActivityThread.main(ActivityThread.java:7356)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at java.lang.reflect.Method.invoke(Native Method)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:491)
01-03 22:42:53.187 18542 18542 E AndroidRuntime:        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:940)
01-03 22:42:53.193 20553 18565 I DropBoxManagerService: add tag=data_app_crash isTagEnabled=true flags=0x2
01-03 22:42:53.193 20553 20626 W ActivityTaskManager:   Force finishing activity org.yourorg.foss/android.app.NativeActivity
01-03 22:42:53.201 20553 20573 I ActivityManager: Showing crash dialog for package org.yourorg.foss u0

@cnlohr
Copy link
Member

cnlohr commented Jan 3, 2025

dlopen failed: cannot locate symbol "HandleSuspend"

Is your issue.

You will need to define HandleSuspend()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants