Skip to content

Shadow不兼容unity如何解决?, Shadow 如果插件app为unity项目会报错,A/gin_host:plugi: jni_internal.cc:893] JNI FatalError called: com/unity3d/player/GoogleARCoreApi #1403

@SirLuo

Description

@SirLuo

如果插件的app为 依赖库为unityLibrary。
unityLibrary中lib 中jar包unity-classes.jar中GoogleARCoreApi 类 public final native void initializeARCore(Activity var1); 方法签名和com.tencent.shadow.core.runtime.ShadowActivity 方法签名不一致,so加载报错。
package com.unity3d.player;

import android.app.Activity;

public class GoogleARCoreApi {
public GoogleARCoreApi() {
}

public final native void initializeARCore(Activity var1);

public final native void pauseARCore();

public final native void resumeARCore();

}

错误如下:
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: ----- class 'Lcom/unity3d/player/GoogleARCoreApi;' cl=0x15c40078 -----
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: objectSize=184 (172 from super)
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: access=0x0000.0001
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: super='java.lang.Class<java.lang.Object>' (cl=0x0)
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: vtable (3 entries, 11 in super):
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: 0: void com.unity3d.player.GoogleARCoreApi.initializeARCore(com.tencent.shadow.core.runtime.ShadowActivity)
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: 1: void com.unity3d.player.GoogleARCoreApi.pauseARCore()
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: 2: void com.unity3d.player.GoogleARCoreApi.resumeARCore()
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: direct methods (1 entries):
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: 0: void com.unity3d.player.GoogleARCoreApi.()
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host E/gin_host:plugi: Failed to register native method com.unity3d.player.GoogleARCoreApi.initializeARCore(Landroid/app/Activity;)V in /data/user/0/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-app-plugin-debug.apk
2025-10-27 13:11:41.735 31867-31867/com.lph.plugin_host A/gin_host:plugi: jni_internal.cc:893] JNI FatalError called: com/unity3d/player/GoogleARCoreApi
2025-10-27 13:11:42.001 1734-1778/? E/AA: ===========>>> isAutoFanCtrl : true temp : 43
2025-10-27 13:11:42.015 1818-1818/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1570 android.content.ContextWrapper.startService:669 app.App$11.run:756 android.os.Handler.handleCallback:883 android.os.Handler.dispatchMessage:100
2025-10-27 13:11:42.016 780-19512/? W/ActivityManager: Unable to start service Intent { cmp=com.ankai.cardvr/.service.ProxyService } U=0: not found
2025-10-27 13:11:42.429 1734-2003/? E/Keeper: ServiceKeeper pkg: com.syu.radio action: com.syu.radio.broadcast.MyService START BIND
2025-10-27 13:11:42.429 1734-2003/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1649 android.content.ContextWrapper.bindService:705 b.d.b:4 b.d.a:1 b.d$a.run:3
2025-10-27 13:11:42.430 780-19512/? W/ActivityManager: Unable to start service Intent { act=com.syu.radio.broadcast.MyService pkg=com.syu.radio } U=0: not found
2025-10-27 13:11:42.430 1734-2003/? E/Keeper: ServiceKeeper pkg: com.syu.bt action: com.syu.broadcast.MyService START BIND
2025-10-27 13:11:42.431 1734-2003/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1649 android.content.ContextWrapper.bindService:705 b.d.b:4 b.d.a:1 b.d$a.run:3
2025-10-27 13:11:42.431 780-19512/? W/ActivityManager: Unable to start service Intent { act=com.syu.broadcast.MyService pkg=com.syu.bt } U=0: not found
2025-10-27 13:11:42.533 2038-31957/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1649 android.content.ContextWrapper.bindService:705 com.loc.d.a:5 com.loc.d.r:17 com.loc.d.b:0
2025-10-27 13:11:42.628 1686-1686/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.bindService:1649 android.content.ContextWrapper.bindService:705 com.syu.remote.RemoteTools.bind:65 com.syu.remote.RemoteTools$1.run:71 android.os.Handler.handleCallback:883
2025-10-27 13:11:42.629 780-24741/? W/ActivityManager: Unable to start service Intent { act=com.syu.unicar.ToolkitService pkg=com.syu.unicar } U=0: not found
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] Runtime aborting...
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] All threads:
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] DALVIK THREADS (33):
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] "main" prio=10 tid=1 Runnable
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] | group="" sCount=0 dsCount=0 flags=0 obj=0x74265018 self=0xf315ce00
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] | sysTid=31867 nice=-10 cgrp=default sched=0/0 handle=0xf3706dc0
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] | state=R schedstat=( 1442118300 8165040 291 ) utm=132 stm=11 core=5 HZ=100
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] | stack=0xff559000-0xff55b000 stackSize=8192KB
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] | held mutexes= "abort lock" "mutator lock"(shared held)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #00 pc 002ff5e3 /apex/com.android.runtime/lib/libart.so (art::DumpNativeStack(std::__1::basic_ostream<char, std::__1::char_traits>&, int, BacktraceMap*, char const*, art::ArtMethod*, void*, bool)+78)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #1 pc 003ac0ed /apex/com.android.runtime/lib/libart.so (art::Thread::DumpStack(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+360)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #2 pc 003a88b3 /apex/com.android.runtime/lib/libart.so (art::Thread::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool, BacktraceMap*, bool) const+34)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #3 pc 003c1025 /apex/com.android.runtime/lib/libart.so (art::DumpCheckpoint::Run(art::Thread*)+600)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #4 pc 003bbc1d /apex/com.android.runtime/lib/libart.so (art::ThreadList::RunCheckpoint(art::Closure*, art::Closure*)+356)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #5 pc 003bb185 /apex/com.android.runtime/lib/libart.so (art::ThreadList::Dump(std::__1::basic_ostream<char, std::__1::char_traits>&, bool)+1016)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #6 pc 0037adc3 /apex/com.android.runtime/lib/libart.so (art::Runtime::Abort(char const*)+1078)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #7 pc 0000859b /system/lib/libbase.so (android::base::LogMessage::~LogMessage()+418)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #8 pc 002934af /apex/com.android.runtime/lib/libart.so (art::JNI::FatalError(_JNIEnv*, char const*)+122)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #9 pc 0026e455 /apex/com.android.runtime/lib/libart.so (art::(anonymous namespace)::CheckJNI::FatalError(_JNIEnv*, char const*)+500)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #10 pc 00456baf /data/data/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-app-plugin-debug.apk!libunity.so (offset e95000) (JNI_OnLoad+54)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #11 pc 00001311 /data/data/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-app-plugin-debug.apk!libmain.so (offset e8d000) (???)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #12 pc 000011ab /data/data/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-app-plugin-debug.apk!libmain.so (offset e8d000) (???)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #13 pc 000dc519 /apex/com.android.runtime/lib/libart.so (art_quick_generic_jni_trampoline+40)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #14 pc 000d7bc5 /apex/com.android.runtime/lib/libart.so (art_quick_invoke_stub_internal+68)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #15 pc 004341ab /apex/com.android.runtime/lib/libart.so (art_quick_invoke_static_stub+246)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #16 pc 000dffb7 /apex/com.android.runtime/lib/libart.so (art::ArtMethod::Invoke(art::Thread*, unsigned int*, unsigned int, art::JValue*, char const*)+186)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #17 pc 00210c8f /apex/com.android.runtime/lib/libart.so (art::interpreter::ArtInterpreterToCompiledCodeBridge(art::Thread*, art::ArtMethod*, art::ShadowFrame*, unsigned short, art::JValue*)+274)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #18 pc 0020ce07 /apex/com.android.runtime/lib/libart.so (bool art::interpreter::DoCall<false, false>(art::ArtMethod*, art::Thread*, art::ShadowFrame&, art::Instruction const*, unsigned short, art::JValue*)+802)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #19 pc 0042b86b /apex/com.android.runtime/lib/libart.so (MterpInvokeStatic+318)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #20 pc 000d2994 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_static+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #21 pc 002d9abe [anon:dalvik-classes.dex extracted in memory from /data/user/0/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-app-plugin-debug.apk] (com.unity3d.player.UnityPlayer.loadNative+126)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #22 pc 0042bad1 /apex/com.android.runtime/lib/libart.so (MterpInvokeStatic+932)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #23 pc 000d2994 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_static+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #24 pc 002d9eb4 [anon:dalvik-classes.dex extracted in memory from /data/user/0/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-app-plugin-debug.apk] (com.unity3d.player.UnityPlayer.+764)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #25 pc 0042b3cb /apex/com.android.runtime/lib/libart.so (MterpInvokeDirect+994)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #26 pc 000d2914 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_direct+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #27 pc 002d8c6c [anon:dalvik-classes.dex extracted in memory from /data/user/0/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-app-plugin-debug.apk] (com.unity3d.player.UnityPlayerActivity.onCreate+60)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #28 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #29 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #30 pc 00003216 [anon:dalvik-classes8.dex extracted in memory from /data/user/0/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-loader-debug.apk!classes8.dex] (com.tencent.shadow.core.loader.delegates.ShadowActivityDelegate.onCreate+702)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #31 pc 0042a9c5 /apex/com.android.runtime/lib/libart.so (MterpInvokeInterface+1472)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #32 pc 000d2a14 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_interface+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #33 pc 000153b0 [anon:dalvik-classes2.dex extracted in memory from /data/user/0/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-runtime-debug.apk!classes2.dex] (com.tencent.shadow.core.runtime.container.PluginContainerActivity.onCreate+124)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #34 pc 00429f81 /apex/com.android.runtime/lib/libart.so (MterpInvokeSuper+1888)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #35 pc 000d2894 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_super+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #36 pc 000006ca [anon:dalvik-classes5.dex extracted in memory from /data/user/0/com.lph.plugin_host/files/ShadowPluginManager/UnpackedPlugin/test-dynamic-manager/937ee1dcf0c8277cddf7a7c2fd235c92/plugin-debug.zip/plugin-runtime-debug.apk!classes5.dex] (com.lph.plugin_runtime.PluginDefaultProxyActivity.onCreate+6)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #37 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #38 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #39 pc 0019d080 /system/framework/framework.jar (android.app.Activity.performCreate+44)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #40 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #41 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #42 pc 0019d03a /system/framework/framework.jar (android.app.Activity.performCreate+2)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #43 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #44 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #45 pc 001fd622 /system/framework/framework.jar (android.app.Instrumentation.callActivityOnCreate+6)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #46 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #47 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.881 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #48 pc 0018adb8 /system/framework/framework.jar (android.app.ActivityThread.performLaunchActivity+1024)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #49 pc 0042b3cb /apex/com.android.runtime/lib/libart.so (MterpInvokeDirect+994)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #50 pc 000d2914 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_direct+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #51 pc 0018a926 /system/framework/framework.jar (android.app.ActivityThread.handleLaunchActivity+94)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #52 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #53 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #54 pc 00273b56 /system/framework/framework.jar (android.app.servertransaction.LaunchActivityItem.execute+126)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #55 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #56 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #57 pc 00276206 /system/framework/framework.jar (android.app.servertransaction.TransactionExecutor.executeCallbacks+154)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #58 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #59 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #60 pc 00276142 /system/framework/framework.jar (android.app.servertransaction.TransactionExecutor.execute+146)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #61 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #62 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #63 pc 00189be4 /system/framework/framework.jar (android.app.ActivityThread$H.handleMessage+172)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #64 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #65 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #66 pc 0030483e /system/framework/framework.jar (android.os.Handler.dispatchMessage+38)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #67 pc 004294a5 /apex/com.android.runtime/lib/libart.so (MterpInvokeVirtual+1184)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #68 pc 000d2814 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_virtual+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #69 pc 0032aae6 /system/framework/framework.jar (android.os.Looper.loop+466)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #70 pc 0042bad1 /apex/com.android.runtime/lib/libart.so (MterpInvokeStatic+932)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #71 pc 000d2994 /apex/com.android.runtime/lib/libart.so (mterp_op_invoke_static+20)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #72 pc 00194a16 /system/framework/framework.jar (android.app.ActivityThread.main+430)
2025-10-27 13:11:42.882 31867-31867/com.lph.plugin_host A/gin_host:plugi: runtime.cc:630] native: #73 pc 001ed0f3 /apex/com.android.runtime/lib/libart.so (_ZN3art11interpreterL7ExecuteEPNS_6ThreadERKNS_20CodeItemDataAccessorERNS_11ShadowFrameENS_6JValueEbb.llvm.2274471208428440263+194)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions