Skip to content

Unity-As-A-Library crashes on native-thread JNI access after upgrading from .NET 8 to .NET 10 #12467

Description

@chane1994

Android framework version

net10.0-android

Affected platform version

Android - 36.1.43/10.0.100 , maui-android - 10.0.20, Visual Studio Code - Version: 1.132.0 , MacOS 15.7.5

Description

An Android application hosting a third-party native SDK (Unity, embedded as an AAR via Unity-as-a-Library, referenced through ) reliably crashes with a fatal native abort() on every cold launch, specifically when the embedded SDK's own native code (running on its own background thread, not the Android main thread) attempts to access the Activity via JNI.

This exact project( same Unity export, same AAR set, same Unity code) worked correctly on .NET 8 for Android.

We updated the .NET version from 8 to 10 because of Android requiring 16kb pages. We have updated all our functionality and everything works as expected except for the AR functionality.

Observed crash

Fatal native abort, thrown from a background thread named UnityMain (not the Activity's main/UI thread), inside the embedded SDK's own native library, at the point where that library attempts to resolve a reference to the hosting Activity via JNI:

Abort message: 'Could not access the activity.'
pid: , tid: , name: UnityMain >>> :unity <<<

The embedded SDK's own logging confirms the ordering problem from its side as well — a dependent native call fires before that SDK's own async initialization routine has completed, consistently, on every launch:

I native: ::initialize_check_availability
E native: called before ::initialize.
...
F native: Calling before ::initialize.
F native: terminating.

The SDK's own initialize() entry point is never observed in logcat completing (or in most captures, appearing at all) before the dependent call that crashes fires, across more than a dozen independent captures.

Steps to Reproduce

  1. File> New Project > Android Application
  2. Add Unity Binding Project to Android Application
  3. Create Unity 2022.3.7f1 Android project with AR functionality. Test in the Unity Project to ensure that
  4. Export Unity Project
  5. Generate AAR file from Unity Project
  6. Insert into JAR the AAR file.
  7. Generate a UnityActivity file that would navigate and communicate with Unity Project
  8. Ensure that the Maui Project opens the UnityActivity file.
  9. A crash will occur when the Maui opens.

Did you find any workaround?

This does work if you don't directly access the AR Core functionality. If you are observing a 3D scene or activity, the project will not crash if it doesn't automatically turn on the AR functionality.

Relevant log output

08-18 16:10:40.985  2049  2115 I ActivityManager: Start proc 7175:com.Test.augmentedreality:unity/u0a969 for next-top-activity {com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}
08-18 16:10:40.995  7175  7175 I Zygote  : Process 7175 created for com.Test.augmentedreality:unity
08-18 16:10:40.995  7175  7175 I edreality:unity: Late-enabling -Xcheck:jni
08-18 16:10:41.008  7175  7175 I edreality:unity: Using generational CollectorTypeCMC GC.
08-18 16:10:41.150  2953  2988 V WindowManagerShell:         {m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0xe697f1d sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null }},
08-18 16:10:41.150  2953  2988 V WindowManagerShell: Transition doesn't have explicit remote, search filters for match for {id=4465 t=OPEN f=0x0 trk=0 r=[0@Point(0, 0)] c=[{m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0xe697f1d sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null }},{m=TO_BACK f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW leash=Surface(name=ActivityRecord{56553526 u0 com.Test.augmentedreality/crc6444b2251530a39422.MainActivity t28559}#17209)/@0x5142592 sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity}, taskId = 28559, appCompatTransitionInfo = null }}]}
08-18 16:10:41.151  2953  2988 V WindowManagerShell: start default transition animation, info = {id=4465 t=OPEN f=0x0 trk=0 r=[0@Point(0, 0)] c=[{m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0xe697f1d sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null }},{m=TO_BACK f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW leash=Surface(name=ActivityRecord{56553526 u0 com.Test.augmentedreality/crc6444b2251530a39422.MainActivity t28559}#17209)/@0x5142592 sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity}, taskId = 28559, appCompatTransitionInfo = null }}]}
08-18 16:10:41.163  2049  2103 V WindowManager: Sent Transition (#4465) createdAt=08-18 16:10:40.962 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=28559 effectiveUid=10969 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.Test.augmentedreality cmp=com.Test.augmentedreality/crc6444b2251530a39422.MainActivity } baseActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} topActivity=ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity} origActivity=null realActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} realActivityIsAppLockEnabled=false numActivities=2 lastActiveTime=245048166 supportsMultiWindow=true supportsMultiWindowWithoutConstraints=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{e43698d Task{c60eb37 #28559 type=standard A=10969:com.Test.augmentedreality}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 0 - 0, 0) topActivityInfo=ActivityInfo{e0dbf8e crc648322bbd6babf6475.UnityActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isInteractive=true isVisible=true isVisibleRequested=true isTopActivityNoDisplay=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false isActivityStackTransparent=false lastNonFullscreenBounds=Rect(351, 828 - 1089, 2268) leafTaskBoundsFromOptions= false capturedLink=null capturedLinkTimestamp=0 requestedVisibleTypes=503 topActivityRequestOpenInBrowserEducationTimestamp=0 appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false isLeafTask= true eligibleForLetterboxEducation= false isLetterboxEducationEnabled= false isLetterboxDoubleTapEnabled= false eligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 topActivityAppBounds=Rect(0, 0 - 1440, 3120) isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false hasMinAspectRatioOverride=false topActivityLetterboxBounds=null topNonResizableActivityAspectRatio=-1.0} topActivityMainWindowFrame=null isAppBubble=false}, pipChange = null, remoteTransitionInfo = null, displayChanges = null, requestedLocation = null, userChange = null, windowingLayerChange = null, fullscreenRequestChange = null, flags = 0, debugId = 4465 }
08-18 16:10:41.164  2049  2103 V WindowManager:         {m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0xcca6553 sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null }},
08-18 16:10:41.227  7175  7175 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libmonosgen-2.0.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:10:41.229  7175  7175 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libmonodroid.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:10:41.230  7175  7175 W edreality:unity: Attempt to remove non-JNI local reference
08-18 16:10:41.248  7175  7175 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:10:41.252  7175  7175 F Unity-ARCore: Could not access the activity.
08-18 16:10:41.275  7175  7175 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:10:41.276  7175  7175 D DOTNET  : AndroidCryptoNative_InitLibraryOnLoad: jint AndroidCryptoNative_InitLibraryOnLoad(JavaVM *, void *) in /__w/1/s/src/runtime/src/native/libs/System.Security.Cryptography.Native.Android/pal_jni.c
08-18 16:10:41.277  7175  7175 D DOTNET  : GetOptionalClassGRef: optional class com/android/org/conscrypt/OpenSSLEngineImpl was not found
08-18 16:10:41.301  7175  7175 W edreality:unity: Attempt to remove non-JNI local reference
08-18 16:10:41.522  7175  7175 I edreality:unity: hiddenapi: Accessing hidden field Landroid/view/Choreographer;->mLastFrameTimeNanos:J (runtime_flags=0, domain=platform, api=unsupported) from Lio/sentry/android/core/internal/util/SentryFrameMetricsCollector; (domain=app, TargetSdkVersion=35) using reflection: allowed
08-18 16:10:42.076  7175  7260 I edreality:unity: hiddenapi: Accessing hidden method Ldalvik/system/VMStack;->getStackClass2()Ljava/lang/Class; (runtime_flags=0, domain=core-platform, api=unsupported) from Lm7/aol; (domain=app, TargetSdkVersion=35) using reflection: allowed
08-18 16:10:42.083  7175  7255 E edreality:unity: No package ID 6a found for resource ID 0x6a0b0013.
08-18 16:10:42.089  2049  2493 D CoreBackPreview: Window{738be86 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@d13185e, mPriority=-1, mIsAnimationCallback=false, mOverrideBehavior=0}
08-18 16:10:42.089  7175  7175 D VRI[UnityActivity]: WindowInsets changed: 1440x3120 statusBars:[0,145,0,0] navigationBars:[0,0,0,168] mandatorySystemGestures:[0,187,0,168] 
08-18 16:10:42.091  2049  2493 D WindowManager: setClientSurface Surface(name=VRI-com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity#17266)/@0x4d5a10c for 738be86 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity
08-18 16:10:42.094  7175  7175 I Surface : Creating surface for consumer VRI[UnityActivity]#0(BLAST Consumer)0 with slotExpansion=1 for 64 slots
08-18 16:10:42.095  7175  7175 D VRI[UnityActivity]: WindowInsets changed: statusBars:null 
08-18 16:10:42.097  7175  7175 I Surface : Creating surface for consumer 468c1cf SurfaceView[com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity]#1(BLAST Consumer)1 with slotExpansion=1 for 64 slots
08-18 16:10:42.159  7175  7247 I Unity   : MemoryManager: Using 'Dynamic Heap' Allocator.
08-18 16:10:42.177  7175  7247 I edreality:unity: hiddenapi: Accessing hidden method Ljava/lang/invoke/MethodHandles$Lookup;-><init>(Ljava/lang/Class;I)V (runtime_flags=0, domain=core-platform, api=unsupported) from Lbitter/jnibridge/a; (domain=app, TargetSdkVersion=35) using reflection: allowed
08-18 16:10:42.258  7175  7175 D VRI[UnityActivity]: WindowInsets changed: statusBars:[0,145,0,0] 
08-18 16:10:42.292  7175  7247 I Unity   : SystemInfo CPU = ARM64, Cores = 8, Memory = 11550mb
08-18 16:10:42.292  7175  7247 I Unity   : SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0xf0), 4 little (mask: 0xf)
08-18 16:10:42.292  7175  7247 I Unity   : ApplicationInfo com.Test.augmentedreality version 3.3.0
08-18 16:10:42.292  7175  7247 I Unity   : Built from '2022.3/staging' branch, Version '2022.3.72f1 (2b7afb1dc8e1)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a', Stripping 'Disabled'
08-18 16:10:42.425  7175  7175 D VRI[UnityActivity]: WindowInsets changed: statusBars:null 
08-18 16:10:42.528  7175  7247 I Unity   : Company Name: Company
08-18 16:10:42.528  7175  7247 I Unity   : Product Name: UnityAsALibraryARSetup
08-18 16:10:42.554  7175  7247 D Unity   :  GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_ARM_debug_assert GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT
08-18 16:10:42.554  7175  7247 D Unity   : _discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_EXT_multisampled_render_to_texture2 GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_EXT_shader_pixel_local_storage GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_OES_texture_storage_multisample_2d_array GL_OES_shader_image_atomic GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_EXT_texture_cube_map_array GL_OES_texture_cube_map_array GL_OES_sample_variables GL_OES_sample_shading GL_OES_shader_multisample_interpolation GL_EXT_shader_io_blocks GL_OES_shader_io_blocks GL_EXT_tessellation_shader GL_OES_tessellation_shader GL_EXT_primitive_bounding_box GL_OES
08-18 16:10:42.554  7175  7247 D Unity   : _primitive_bounding_box GL_EXT_geometry_shader GL_OES_geometry_shader GL_ANDROID_extension_pack_es31a GL_EXT_gpu_shader5 GL_OES_gpu_shader5 GL_EXT_texture_buffer GL_OES_texture_buffer GL_EXT_copy_image GL_OES_copy_image GL_EXT_shader_non_constant_global_initializers GL_EXT_color_buffer_half_float GL_EXT_unpack_subimage GL_EXT_color_buffer_float GL_EXT_float_blend GL_EXT_YUV_target GL_OVR_multiview GL_OVR_multiview2 GL_OVR_multiview_multisampled_render_to_texture GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex GL_EXT_protected_textures GL_EXT_buffer_storage GL_EXT_external_buffer GL_EXT_EGL_image_array GL_EXT_clear_texture GL_ARM_shader_core_properties GL_EXT_texture_filter_anisotropic GL_OES_texture_float_linear GL_ARM_texture_unnormalized_coordinates GL_EXT_shader_framebuffer_fetch GL_EXT_clip_control GL_EXT_polygon_offset_clamp GL_EXT_EGL_image_storage
08-18 16:10:42.586  7175  7247 D edreality:unity: PlayerBase::PlayerBase()
08-18 16:10:42.586  7175  7247 D edreality:unity: TrackPlayerBase::TrackPlayerBase()
08-18 16:10:42.789  7175  7247 W Unity   : The referenced script (Unknown) on this Behaviour is missing!
08-18 16:10:42.789  7175  7247 W Unity   : The referenced script on this Behaviour (Game Object '<null>') is missing!
08-18 16:10:42.797  7175  7247 I Unity   : XRGeneral Settings awakening...
08-18 16:10:42.797  7175  7247 I Unity   : UnityEngine.XR.Management.XRGeneralSettings:Awake()
08-18 16:10:42.797  7175  7247 I Unity   : 
08-18 16:10:43.665  7175  7247 E Test APPS: VizUnityBundle is null!
08-18 16:10:43.742  7175  7247 E CRASH   : pid: 7175, tid: 7247, name: UnityMain  >>> com.Test.augmentedreality:unity <<<
08-18 16:10:43.742  7175  7247 E CRASH   :       #06 pc 000000000005c6e8  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:10:43.742  7175  7247 E CRASH   :       #07 pc 000000000005ed10  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:10:43.742  7175  7247 E CRASH   :       #08 pc 000000000005fb1c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (UnityARCore_raycast_acquireChanges+40) (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:10:43.743  7175  7247 E CRASH   :       #15 pc 0000000000958a7c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #16 pc 0000000000967024  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #17 pc 0000000000970280  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #18 pc 000000000076ee80  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #19 pc 00000000008422b0  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #20 pc 00000000008422f0  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #21 pc 000000000084259c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #22 pc 00000000009e2848  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:43.743  7175  7247 E CRASH   :       #23 pc 00000000009fc194  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:44.251  7175  7247 F libc    : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 7247 (UnityMain), pid 7175 (edreality:unity)
08-18 16:10:44.521  7175  7175 D WindowOnBackDispatcher: setTopOnBackInvokedCallback (unwrapped): com.unity3d.player.e@f141631
08-18 16:10:44.521  2049  2155 D CoreBackPreview: Window{738be86 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@f328223, mPriority=1, mIsAnimationCallback=false, mOverrideBehavior=0}
08-18 16:10:44.722  7360  7360 F DEBUG   : Cmdline: com.Test.augmentedreality:unity
08-18 16:10:44.722  7360  7360 F DEBUG   : pid: 7175, ppid: 1451, tid: 7247, name: UnityMain  >>> com.Test.augmentedreality:unity <<<
08-18 16:10:44.722  7360  7360 F DEBUG   :       #06 pc 000000000005c6e8  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:10:44.722  7360  7360 F DEBUG   :       #07 pc 000000000005ed10  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:10:44.722  7360  7360 F DEBUG   :       #08 pc 000000000005fb1c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (UnityARCore_raycast_acquireChanges+40) (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:10:44.722  7360  7360 F DEBUG   :       #15 pc 0000000000958a7c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:10:44.722  7360  7360 F DEBUG   :       #33 pc 00000000002b1ae4  [anon:dalvik-classes3.dex extract...ugmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk] (com.unity3d.player.V0.handleMessage+0)
08-18 16:10:44.722  7360  7360 F DEBUG   :       #45 pc 00000000002b1ea0  [anon:dalvik-classes3.dex extract...ugmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk] (com.unity3d.player.W0.run+0)
08-18 16:10:44.764  2049  7364 W ActivityTaskManager:   Force finishing activity com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity
08-18 16:10:44.766  2953  2988 V WindowManagerShell: Transition requested (#4468): android.os.BinderProxy@e876ef9 TransitionRequestInfo { type = CLOSE, triggerTask = TaskInfo{userId=0 taskId=28559 effectiveUid=10969 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.Test.augmentedreality cmp=com.Test.augmentedreality/crc6444b2251530a39422.MainActivity } baseActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} topActivity=ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity} origActivity=null realActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} realActivityIsAppLockEnabled=false numActivities=2 lastActiveTime=245051705 supportsMultiWindow=true supportsMultiWindowWithoutConstraints=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.os.BinderProxy@daaaab8} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 0 - 0, 0) topActivityInfo=ActivityInfo{1104e3e crc648322bbd6babf6475.UnityActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isInteractive=true isVisible=true isVisibleRequested=true isTopActivityNoDisplay=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false isActivityStackTransparent=false lastNonFullscreenBounds=Rect(351, 828 - 1089, 2268) leafTaskBoundsFromOptions= false capturedLink=null capturedLinkTimestamp=0 requestedVisibleTypes=498 topActivityRequestOpenInBrowserEducationTimestamp=0 appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false isLeafTask= true eligibleForLetterboxEducation= false isLetterboxEducationEnabled= false isLetterboxDoubleTapEnabled= false eligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 topActivityAppBounds=Rect(0, 0 - 1440, 3120) isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false hasMinAspectRatioOverride=false topActivityLetterboxBounds=null topNonResizableActivityAspectRatio=-1.0} topActivityMainWindowFrame=null isAppBubble=false}, pipChange = null, remoteTransitionInfo = null, displayChanges = null, requestedLocation = null, userChange = null, windowingLayerChange = null, fullscreenRequestChange = null, flags = 16, debugId = 4468 }
08-18 16:10:44.792  2049  2116 I ActivityManager: Process PhantomProcessRecord {bd83a13 7362:7175:com.Test.augmentedreality:unity/u0a969} died
08-18 16:10:44.935  2049  8228 I ActivityManager: Process com.Test.augmentedreality:unity (pid 7175) has died: fg  TOP 
08-18 16:10:44.938  2049  5972 I WindowManager: WIN DEATH: Window{738be86 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}
08-18 16:10:45.052  2049  2103 V WindowManager: Sent Transition (#4468) createdAt=08-18 16:10:44.765 via request=TransitionRequestInfo { type = CLOSE, triggerTask = TaskInfo{userId=0 taskId=28559 effectiveUid=10969 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 pkg=com.Test.augmentedreality cmp=com.Test.augmentedreality/crc6444b2251530a39422.MainActivity } baseActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} topActivity=ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity} origActivity=null realActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} realActivityIsAppLockEnabled=false numActivities=2 lastActiveTime=245051705 supportsMultiWindow=true supportsMultiWindowWithoutConstraints=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{e43698d Task{c60eb37 #28559 type=standard A=10969:com.Test.augmentedreality}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 0 - 0, 0) topActivityInfo=ActivityInfo{e0dbf8e crc648322bbd6babf6475.UnityActivity} launchCookies=[] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isInteractive=true isVisible=true isVisibleRequested=true isTopActivityNoDisplay=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false isActivityStackTransparent=false lastNonFullscreenBounds=Rect(351, 828 - 1089, 2268) leafTaskBoundsFromOptions= false capturedLink=null capturedLinkTimestamp=0 requestedVisibleTypes=498 topActivityRequestOpenInBrowserEducationTimestamp=0 appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false isLeafTask= true eligibleForLetterboxEducation= false isLetterboxEducationEnabled= false isLetterboxDoubleTapEnabled= false eligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 topActivityAppBounds=Rect(0, 0 - 1440, 3120) isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false hasMinAspectRatioOverride=false topActivityLetterboxBounds=null topNonResizableActivityAspectRatio=-1.0} topActivityMainWindowFrame=null isAppBubble=false}, pipChange = null, remoteTransitionInfo = null, displayChanges = null, requestedLocation = null, userChange = null, windowingLayerChange = null, fullscreenRequestChange = null, flags = 16, debugId = 4468 }
08-18 16:10:45.053  2049  2103 V WindowManager:         {m=CLOSE f=FILLS_TASK leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0xcca6553 sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}},
08-18 16:10:45.053  2953  2988 V WindowManagerShell:         {m=CLOSE f=FILLS_TASK leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0x1d979ec sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}},
08-18 16:10:45.054  2953  2988 V WindowManagerShell: Transition doesn't have explicit remote, search filters for match for {id=4468 t=CLOSE f=0x10 trk=0 r=[0@Point(0, 0)] c=[{m=CLOSE f=FILLS_TASK leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0x1d979ec sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}},{m=TO_FRONT f=FILLS_TASK leash=Surface(name=ActivityRecord{56553526 u0 com.Test.augmentedreality/crc6444b2251530a39422.MainActivity t28559}#17209)/@0x54701b5 sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity}, taskId = 28559, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}}]}
08-18 16:10:45.054  2953  2988 V WindowManagerShell: start default transition animation, info = {id=4468 t=CLOSE f=0x10 trk=0 r=[0@Point(0, 0)] c=[{m=CLOSE f=FILLS_TASK leash=Surface(name=ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559}#17257)/@0x1d979ec sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28559, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}},{m=TO_FRONT f=FILLS_TASK leash=Surface(name=ActivityRecord{56553526 u0 com.Test.augmentedreality/crc6444b2251530a39422.MainActivity t28559}#17209)/@0x54701b5 sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity}, taskId = 28559, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}}]}
08-18 16:10:45.266  2049  2106 W ActivityTaskManager: Activity top resumed state loss timeout for ActivityRecord{175709536 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28559 f} isExiting}
08-18 16:10:45.533  2049  3234 W WindowManager: Exception thrown during dispatchAppVisibility Window{738be86 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity EXITING}
08-18 16:13:04.270  7565  7565 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libmonodroid.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:13:04.289  7565  7565 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:13:04.291  7565  7565 F Unity-ARCore: Could not access the activity.
08-18 16:13:04.312  7565  7565 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:13:04.313  7565  7565 D DOTNET  : AndroidCryptoNative_InitLibraryOnLoad: jint AndroidCryptoNative_InitLibraryOnLoad(JavaVM *, void *) in /__w/1/s/src/runtime/src/native/libs/System.Security.Cryptography.Native.Android/pal_jni.c
08-18 16:13:04.313  7565  7565 D DOTNET  : GetOptionalClassGRef: optional class com/android/org/conscrypt/OpenSSLEngineImpl was not found
08-18 16:13:05.380  7565  7565 D WindowOnBackDispatcher: setTopOnBackInvokedCallback (unwrapped): crc6488302ad6e9e4df1a.MauiAppCompatActivity_PredictiveBackCallback@ce6b10c
08-18 16:13:17.774  2049  3248 V ActivityTaskManager: TaskLaunchParamsModifier: phase=3 task=Task{68b9f03 #28560 type=standard A=10969:com.Test.augmentedreality} activity=ActivityRecord{261165772 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t-1} display-area-from-source=DefaultTaskDisplayArea@223623533 display-id=0 task-display-area-windowing-mode=1 suggested-display-area=DefaultTaskDisplayArea@223623533 inherit-from-source=fullscreen non-freeform-task-display-area display-area=DefaultTaskDisplayArea@223623533 default-portrait freeform-size-mismatch=Rect(351, 828 - 1089, 2268)
08-18 16:13:17.774  2049  3248 I ActivityTaskManager: START u0 {act=android.intent.action.PROCESS flg=0x10000000 xflg=0x4 cmp=com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity (has extras)} with LAUNCH_MULTIPLE from uid 10969 (com.Test.augmentedreality) (sr=263201714) (BAL_ALLOW_VISIBLE_WINDOW) result code=0
08-18 16:13:17.776  2953  2988 V WindowManagerShell: Transition requested (#4471): android.os.BinderProxy@a18eafe TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=28560 effectiveUid=10969 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.Test.augmentedreality/crc6444b2251530a39422.MainActivity } baseActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} topActivity=ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity} origActivity=null realActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} realActivityIsAppLockEnabled=false numActivities=2 lastActiveTime=245204969 supportsMultiWindow=true supportsMultiWindowWithoutConstraints=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.os.BinderProxy@94812a7} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 0 - 0, 0) topActivityInfo=ActivityInfo{2a9a25f crc648322bbd6babf6475.UnityActivity} launchCookies=[android.os.BinderProxy@95232fd] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isInteractive=true isVisible=true isVisibleRequested=true isTopActivityNoDisplay=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false isActivityStackTransparent=false lastNonFullscreenBounds=Rect(351, 828 - 1089, 2268) leafTaskBoundsFromOptions= false capturedLink=null capturedLinkTimestamp=0 requestedVisibleTypes=503 topActivityRequestOpenInBrowserEducationTimestamp=0 appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false isLeafTask= true eligibleForLetterboxEducation= false isLetterboxEducationEnabled= false isLetterboxDoubleTapEnabled= false eligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 topActivityAppBounds=Rect(0, 0 - 1440, 3120) isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false hasMinAspectRatioOverride=false topActivityLetterboxBounds=null topNonResizableActivityAspectRatio=-1.0} topActivityMainWindowFrame=null isAppBubble=false}, pipChange = null, remoteTransitionInfo = null, displayChanges = null, requestedLocation = null, userChange = null, windowingLayerChange = null, fullscreenRequestChange = null, flags = 0, debugId = 4471 }
08-18 16:13:17.791  2049  2115 I ActivityManager: Start proc 7730:com.Test.augmentedreality:unity/u0a969 for next-top-activity {com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}
08-18 16:13:17.797  2953  2988 V WindowManagerShell:         {m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW p=WCT{android.os.BinderProxy@94812a7} leash=Surface(name=ActivityRecord{261165772 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28560}#17322)/@0x449029 sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28560, appCompatTransitionInfo = null }},
08-18 16:13:17.797  2953  2988 V WindowManagerShell: Transition doesn't have explicit remote, search filters for match for {id=4471 t=OPEN f=0x0 trk=0 r=[0@Point(0, 0)] c=[{m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW p=WCT{android.os.BinderProxy@94812a7} leash=Surface(name=ActivityRecord{261165772 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28560}#17322)/@0x449029 sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28560, appCompatTransitionInfo = null }},{m=TO_BACK f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW p=WCT{android.os.BinderProxy@94812a7} leash=Surface(name=ActivityRecord{263201714 u0 com.Test.augmentedreality/crc6444b2251530a39422.MainActivity t28560}#17305)/@0x9d40fae sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity}, taskId = 28560, appCompatTransitionInfo = null }},{m=CHANGE f=NONE leash=Surface(name=Task=28560#17304)/@0xaa5e14f sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 taskParent=-1 winMode=1 userId=0}]}
08-18 16:13:17.798  2953  2988 V WindowManagerShell: start default transition animation, info = {id=4471 t=OPEN f=0x0 trk=0 r=[0@Point(0, 0)] c=[{m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW p=WCT{android.os.BinderProxy@94812a7} leash=Surface(name=ActivityRecord{261165772 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28560}#17322)/@0x449029 sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28560, appCompatTransitionInfo = null }},{m=TO_BACK f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW p=WCT{android.os.BinderProxy@94812a7} leash=Surface(name=ActivityRecord{263201714 u0 com.Test.augmentedreality/crc6444b2251530a39422.MainActivity t28560}#17305)/@0x9d40fae sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity}, taskId = 28560, appCompatTransitionInfo = null }},{m=CHANGE f=NONE leash=Surface(name=Task=28560#17304)/@0xaa5e14f sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 taskParent=-1 winMode=1 userId=0}]}
08-18 16:13:17.800  7730  7730 I Zygote  : Process 7730 created for com.Test.augmentedreality:unity
08-18 16:13:17.801  7730  7730 I edreality:unity: Late-enabling -Xcheck:jni
08-18 16:13:17.802  2049  2103 V WindowManager: Sent Transition (#4471) createdAt=08-18 16:13:17.764 via request=TransitionRequestInfo { type = OPEN, triggerTask = TaskInfo{userId=0 taskId=28560 effectiveUid=10969 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.Test.augmentedreality/crc6444b2251530a39422.MainActivity } baseActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} topActivity=ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity} origActivity=null realActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} realActivityIsAppLockEnabled=false numActivities=2 lastActiveTime=245204969 supportsMultiWindow=true supportsMultiWindowWithoutConstraints=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{RemoteToken{f1bd7b0 Task{68b9f03 #28560 type=standard A=10969:com.Test.augmentedreality}}} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 0 - 0, 0) topActivityInfo=ActivityInfo{43ef0ce crc648322bbd6babf6475.UnityActivity} launchCookies=[android.os.BinderProxy@3676dae] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isInteractive=true isVisible=true isVisibleRequested=true isTopActivityNoDisplay=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false isActivityStackTransparent=false lastNonFullscreenBounds=Rect(351, 828 - 1089, 2268) leafTaskBoundsFromOptions= false capturedLink=null capturedLinkTimestamp=0 requestedVisibleTypes=503 topActivityRequestOpenInBrowserEducationTimestamp=0 appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false isLeafTask= true eligibleForLetterboxEducation= false isLetterboxEducationEnabled= false isLetterboxDoubleTapEnabled= false eligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 topActivityAppBounds=Rect(0, 0 - 1440, 3120) isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false hasMinAspectRatioOverride=false topActivityLetterboxBounds=null topNonResizableActivityAspectRatio=-1.0} topActivityMainWindowFrame=null isAppBubble=false}, pipChange = null, remoteTransitionInfo = null, displayChanges = null, requestedLocation = null, userChange = null, windowingLayerChange = null, fullscreenRequestChange = null, flags = 0, debugId = 4471 }
08-18 16:13:17.803  2049  2103 V WindowManager:         {m=OPEN f=FILLS_TASK|IS_BEHIND_STARTING_WINDOW p=WCT{RemoteToken{f1bd7b0 Task{68b9f03 #28560 type=standard A=10969:com.Test.augmentedreality}}} leash=Surface(name=ActivityRecord{261165772 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28560}#17322)/@0xd0ad993 sb=Rect(0, 0 - 0, 0) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=-1->0 r=-1->0:-1 bc=ff121212 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28560, appCompatTransitionInfo = null }},
08-18 16:13:17.816  7730  7730 I edreality:unity: Using generational CollectorTypeCMC GC.
08-18 16:13:18.013  7730  7730 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libmonosgen-2.0.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:13:18.014  7730  7730 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libmonodroid.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:13:18.014  7730  7730 W edreality:unity: Attempt to remove non-JNI local reference
08-18 16:13:18.028  7730  7730 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:13:18.031  7730  7730 F Unity-ARCore: Could not access the activity.
08-18 16:13:18.043  7730  7730 D nativeloader: Load /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so using class loader ns clns-9 (caller=/data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk!classes2.dex): ok
08-18 16:13:18.044  7730  7730 D DOTNET  : AndroidCryptoNative_InitLibraryOnLoad: jint AndroidCryptoNative_InitLibraryOnLoad(JavaVM *, void *) in /__w/1/s/src/runtime/src/native/libs/System.Security.Cryptography.Native.Android/pal_jni.c
08-18 16:13:18.044  7730  7730 D DOTNET  : GetOptionalClassGRef: optional class com/android/org/conscrypt/OpenSSLEngineImpl was not found
08-18 16:13:18.068  7730  7730 W edreality:unity: Attempt to remove non-JNI local reference
08-18 16:13:18.291  7730  7730 I edreality:unity: hiddenapi: Accessing hidden field Landroid/view/Choreographer;->mLastFrameTimeNanos:J (runtime_flags=0, domain=platform, api=unsupported) from Lio/sentry/android/core/internal/util/SentryFrameMetricsCollector; (domain=app, TargetSdkVersion=35) using reflection: allowed
08-18 16:13:18.768  7730  7803 I edreality:unity: hiddenapi: Accessing hidden method Ldalvik/system/VMStack;->getStackClass2()Ljava/lang/Class; (runtime_flags=0, domain=core-platform, api=unsupported) from Lm7/aol; (domain=app, TargetSdkVersion=35) using reflection: allowed
08-18 16:13:18.775  7730  7730 D WindowOnBackDispatcher: setTopOnBackInvokedCallback (unwrapped): com.unity3d.player.e@ecf5d7e
08-18 16:13:18.775  2049  3590 D CoreBackPreview: Window{b7dd153 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@3b7cfbc, mPriority=-1, mIsAnimationCallback=false, mOverrideBehavior=0}
08-18 16:13:18.775  2049  3590 D CoreBackPreview: Window{b7dd153 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}: Setting back callback OnBackInvokedCallbackInfo{mCallback=android.window.IOnBackInvokedCallback$Stub$Proxy@df6eb45, mPriority=1, mIsAnimationCallback=false, mOverrideBehavior=0}
08-18 16:13:18.776  7730  7730 D VRI[UnityActivity]: WindowInsets changed: 1440x3120 statusBars:[0,145,0,0] navigationBars:[0,0,0,168] mandatorySystemGestures:[0,187,0,168] 
08-18 16:13:18.776  7730  7795 E edreality:unity: No package ID 6a found for resource ID 0x6a0b0013.
08-18 16:13:18.778  2049  3590 D WindowManager: setClientSurface Surface(name=VRI-com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity#17332)/@0xa2f629a for b7dd153 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity
08-18 16:13:18.781  7730  7730 I Surface : Creating surface for consumer VRI[UnityActivity]#0(BLAST Consumer)0 with slotExpansion=1 for 64 slots
08-18 16:13:18.782  7730  7730 D VRI[UnityActivity]: WindowInsets changed: statusBars:null 
08-18 16:13:18.784  7730  7730 I Surface : Creating surface for consumer ecfc9f5 SurfaceView[com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity]#1(BLAST Consumer)1 with slotExpansion=1 for 64 slots
08-18 16:13:18.798  2049  2103 I ActivityTaskManager: Displayed com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity for user 0: +1s36ms
08-18 16:13:18.822  7730  7791 I Unity   : MemoryManager: Using 'Dynamic Heap' Allocator.
08-18 16:13:18.827  7730  7791 I edreality:unity: hiddenapi: Accessing hidden method Ljava/lang/invoke/MethodHandles$Lookup;-><init>(Ljava/lang/Class;I)V (runtime_flags=0, domain=core-platform, api=unsupported) from Lbitter/jnibridge/a; (domain=app, TargetSdkVersion=35) using reflection: allowed
08-18 16:13:18.910  7730  7791 I Unity   : SystemInfo CPU = ARM64, Cores = 8, Memory = 11550mb
08-18 16:13:18.910  7730  7791 I Unity   : SystemInfo ARM big.LITTLE configuration: 4 big (mask: 0xf0), 4 little (mask: 0xf)
08-18 16:13:18.910  7730  7791 I Unity   : ApplicationInfo com.Test.augmentedreality version 3.3.0
08-18 16:13:18.910  7730  7791 I Unity   : Built from '2022.3/staging' branch, Version '2022.3.72f1 (2b7afb1dc8e1)', Build type 'Release', Scripting Backend 'il2cpp', CPU 'arm64-v8a', Stripping 'Disabled'
08-18 16:13:18.991  7730  7791 I Unity   : Company Name: Company
08-18 16:13:18.991  7730  7791 I Unity   : Product Name: UnityAsALibraryARSetup
08-18 16:13:19.004  7730  7791 D Unity   :  GL_EXT_debug_marker GL_ARM_rgba8 GL_ARM_mali_shader_binary GL_ARM_debug_assert GL_OES_depth24 GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_EXT_read_format_bgra GL_OES_compressed_paletted_texture GL_OES_compressed_ETC1_RGB8_texture GL_OES_standard_derivatives GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_image_external_essl3 GL_OES_EGL_sync GL_OES_texture_npot GL_OES_vertex_half_float GL_OES_required_internalformat GL_OES_vertex_array_object GL_OES_mapbuffer GL_EXT_texture_format_BGRA8888 GL_EXT_texture_rg GL_EXT_texture_type_2_10_10_10_REV GL_OES_fbo_render_mipmap GL_OES_element_index_uint GL_EXT_shadow_samplers GL_OES_texture_compression_astc GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_KHR_texture_compression_astc_sliced_3d GL_EXT_texture_compression_astc_decode_mode GL_EXT_texture_compression_astc_decode_mode_rgb9e5 GL_KHR_debug GL_EXT_occlusion_query_boolean GL_EXT_disjoint_timer_query GL_EXT_blend_minmax GL_EXT
08-18 16:13:19.004  7730  7791 D Unity   : _discard_framebuffer GL_OES_get_program_binary GL_OES_texture_3D GL_EXT_texture_storage GL_EXT_multisampled_render_to_texture GL_EXT_multisampled_render_to_texture2 GL_OES_surfaceless_context GL_OES_texture_stencil8 GL_EXT_shader_pixel_local_storage GL_ARM_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_ARM_mali_program_binary GL_EXT_sRGB GL_EXT_sRGB_write_control GL_EXT_texture_sRGB_decode GL_EXT_texture_sRGB_R8 GL_EXT_texture_sRGB_RG8 GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_OES_texture_storage_multisample_2d_array GL_OES_shader_image_atomic GL_EXT_robustness GL_EXT_draw_buffers_indexed GL_OES_draw_buffers_indexed GL_EXT_texture_border_clamp GL_OES_texture_border_clamp GL_EXT_texture_cube_map_array GL_OES_texture_cube_map_array GL_OES_sample_variables GL_OES_sample_shading GL_OES_shader_multisample_interpolation GL_EXT_shader_io_blocks GL_OES_shader_io_blocks GL_EXT_tessellation_shader GL_OES_tessellation_shader GL_EXT_primitive_bounding_box GL_OES
08-18 16:13:19.004  7730  7791 D Unity   : _primitive_bounding_box GL_EXT_geometry_shader GL_OES_geometry_shader GL_ANDROID_extension_pack_es31a GL_EXT_gpu_shader5 GL_OES_gpu_shader5 GL_EXT_texture_buffer GL_OES_texture_buffer GL_EXT_copy_image GL_OES_copy_image GL_EXT_shader_non_constant_global_initializers GL_EXT_color_buffer_half_float GL_EXT_unpack_subimage GL_EXT_color_buffer_float GL_EXT_float_blend GL_EXT_YUV_target GL_OVR_multiview GL_OVR_multiview2 GL_OVR_multiview_multisampled_render_to_texture GL_KHR_robustness GL_KHR_robust_buffer_access_behavior GL_EXT_draw_elements_base_vertex GL_OES_draw_elements_base_vertex GL_EXT_protected_textures GL_EXT_buffer_storage GL_EXT_external_buffer GL_EXT_EGL_image_array GL_EXT_clear_texture GL_ARM_shader_core_properties GL_EXT_texture_filter_anisotropic GL_OES_texture_float_linear GL_ARM_texture_unnormalized_coordinates GL_EXT_shader_framebuffer_fetch GL_EXT_clip_control GL_EXT_polygon_offset_clamp GL_EXT_EGL_image_storage
08-18 16:13:19.018  7730  7791 D edreality:unity: PlayerBase::PlayerBase()
08-18 16:13:19.018  7730  7791 D edreality:unity: TrackPlayerBase::TrackPlayerBase()
08-18 16:13:19.133  7730  7791 I Unity   : XRGeneral Settings awakening...
08-18 16:13:19.133  7730  7791 I Unity   : UnityEngine.XR.Management.XRGeneralSettings:Awake()
08-18 16:13:19.133  7730  7791 I Unity   : 
08-18 16:13:19.135  7730  7734 I edreality:unity: Compiler allocated 5303KB to compile void android.view.ViewRootImpl.performTraversals(long)
08-18 16:13:19.729  7730  7791 W Unity   : No Camera Floor Offset GameObject specified for XR Origin, using attached GameObject.
08-18 16:13:19.729  7730  7791 W Unity   : Unity.XR.CoreUtils.XROrigin:Awake()
08-18 16:13:19.729  7730  7791 W Unity   : 
08-18 16:13:19.729  7730  7791 W Unity   : Camera "AR Camera" does not use a Tracked Pose Driver (Input System), so its transform will not be updated by an XR device.  In order for this to be updated, please add a Tracked Pose Driver (Input System) with bindings for position and rotation of the center eye.
08-18 16:13:19.729  7730  7791 W Unity   : Unity.XR.CoreUtils.XROrigin:Awake()
08-18 16:13:19.729  7730  7791 W Unity   : 
08-18 16:13:19.730  7730  7791 W Unity   : No Camera Floor Offset GameObject specified for XR Origin, using attached GameObject.
08-18 16:13:19.730  7730  7791 W Unity   : Unity.XR.CoreUtils.XROrigin:Awake()
08-18 16:13:19.730  7730  7791 W Unity   : 
08-18 16:13:19.730  7730  7791 W Unity   : Camera "AR Camera" does not use a Tracked Pose Driver (Input System), so its transform will not be updated by an XR device.  In order for this to be updated, please add a Tracked Pose Driver (Input System) with bindings for position and rotation of the center eye.
08-18 16:13:19.730  7730  7791 W Unity   : Unity.XR.CoreUtils.XROrigin:Awake()
08-18 16:13:19.730  7730  7791 W Unity   : 
08-18 16:13:19.730  7730  7791 I Unity   : Manana
08-18 16:13:19.730  7730  7791 I Unity   : MachineObjectPlacement:Awake()
08-18 16:13:19.730  7730  7791 I Unity   : 
08-18 16:13:19.732  7730  7791 E Test APPS: VizUnityBundle is : /data/user/0/com.Test.augmentedreality/cache/viz/E300AJ/e300aj_assets_all_9a6eef91051bed0717224072b10438c1.bundle
08-18 16:13:19.732  7730  7791 E Test APPS: VizUnityBundle is null!
08-18 16:13:19.785  7730  7791 E CRASH   : pid: 7730, tid: 7791, name: UnityMain  >>> com.Test.augmentedreality:unity <<<
08-18 16:13:19.785  7730  7791 E CRASH   :       #06 pc 000000000005c6e8  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:13:19.785  7730  7791 E CRASH   :       #07 pc 000000000005ed10  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:13:19.785  7730  7791 E CRASH   :       #08 pc 000000000005fb1c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (UnityARCore_raycast_acquireChanges+40) (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:13:19.785  7730  7791 E CRASH   :       #15 pc 0000000000958a7c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:13:19.785  7730  7791 E CRASH   :       #16 pc 0000000000967024  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:13:20.008  7730  7791 F libc    : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 7791 (UnityMain), pid 7730 (edreality:unity)
08-18 16:13:20.344  7880  7880 F DEBUG   : Cmdline: com.Test.augmentedreality:unity
08-18 16:13:20.344  7880  7880 F DEBUG   : pid: 7730, ppid: 1451, tid: 7791, name: UnityMain  >>> com.Test.augmentedreality:unity <<<
08-18 16:13:20.344  7880  7880 F DEBUG   :       #06 pc 000000000005c6e8  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:13:20.344  7880  7880 F DEBUG   :       #07 pc 000000000005ed10  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:13:20.344  7880  7880 F DEBUG   :       #08 pc 000000000005fb1c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libUnityARCore.so (UnityARCore_raycast_acquireChanges+40) (BuildId: 1d97d1756ede37b12526c650e851b4b2a5ed7da4)
08-18 16:13:20.344  7880  7880 F DEBUG   :       #15 pc 0000000000958a7c  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
08-18 16:13:20.344  7880  7880 F DEBUG   :       #16 pc 0000000000967024  /data/app/~~NSG7mPSxIRo7g2m1cBhFLA==/com.Test.augmentedreality-_Ox208_9oq0knmPPBCjsiw==/lib/arm64/libunity.so (BuildId: bcb3860d9e65ab9570a4e850fe942dbf5e95b05f)
_Ox208_9oq0knmPPBCjsiw==/base.apk] (com.unity3d.player.UnityPlayer.-$$Nest$mnativeRender+0)
08-18 16:13:20.345  7880  7880 F DEBUG   :       #33 pc 00000000002b1ae4  [anon:dalvik-classes3.dex extract...ugmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk] (com.unity3d.player.V0.handleMessage+0)
08-18 16:13:20.345  7880  7880 F DEBUG   :       #45 pc 00000000002b1ea0  [anon:dalvik-classes3.dex extract...ugmentedreality-_Ox208_9oq0knmPPBCjsiw==/base.apk] (com.unity3d.player.W0.run+0)
08-18 16:13:20.373  2049  7886 W ActivityTaskManager:   Force finishing activity com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity
08-18 16:13:20.375  2953  2988 V WindowManagerShell: Transition requested (#4472): android.os.BinderProxy@d25dd5b TransitionRequestInfo { type = CLOSE, triggerTask = TaskInfo{userId=0 taskId=28560 effectiveUid=10969 displayId=0 isRunning=true baseIntent=Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.Test.augmentedreality/crc6444b2251530a39422.MainActivity } baseActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} topActivity=ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity} origActivity=null realActivity=ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity} realActivityIsAppLockEnabled=false numActivities=2 lastActiveTime=245205888 supportsMultiWindow=true supportsMultiWindowWithoutConstraints=true resizeMode=1 isResizeable=true minWidth=-1 minHeight=-1 defaultMinSize=220 token=WCT{android.os.BinderProxy@94812a7} topActivityType=1 pictureInPictureParams=null shouldDockBigOverlays=false launchIntoPipHostTaskId=-1 lastParentTaskIdBeforePip=-1 displayCutoutSafeInsets=Rect(0, 0 - 0, 0) topActivityInfo=ActivityInfo{1f329f8 crc648322bbd6babf6475.UnityActivity} launchCookies=[android.os.BinderProxy@95232fd] positionInParent=Point(0, 0) parentTaskId=-1 isFocused=true isInteractive=true isVisible=true isVisibleRequested=true isTopActivityNoDisplay=false isSleeping=false locusId=null displayAreaFeatureId=1 isTopActivityTransparent=false isActivityStackTransparent=false lastNonFullscreenBounds=Rect(351, 828 - 1089, 2268) leafTaskBoundsFromOptions= false capturedLink=null capturedLinkTimestamp=0 requestedVisibleTypes=498 topActivityRequestOpenInBrowserEducationTimestamp=0 appCompatTaskInfo=AppCompatTaskInfo { topActivityInSizeCompat=false isLeafTask= true eligibleForLetterboxEducation= false isLetterboxEducationEnabled= false isLetterboxDoubleTapEnabled= false eligibleForUserAspectRatioButton= false topActivityBoundsLetterboxed= false isFromLetterboxDoubleTap= false topActivityLetterboxVerticalPosition= -1 topActivityLetterboxHorizontalPosition= -1 topActivityLetterboxWidth=-1 topActivityLetterboxHeight=-1 topActivityAppBounds=Rect(0, 0 - 1440, 3120) isUserFullscreenOverrideEnabled=false isSystemFullscreenOverrideEnabled=false hasMinAspectRatioOverride=false topActivityLetterboxBounds=null topNonResizableActivityAspectRatio=-1.0} topActivityMainWindowFrame=null isAppBubble=false}, pipChange = null, remoteTransitionInfo = null, displayChanges = null, requestedLocation = null, userChange = null, windowingLayerChange = null, fullscreenRequestChange = null, flags = 16, debugId = 4472 }
08-18 16:13:20.489  2049 10195 I ActivityManager: Process com.Test.augmentedreality:unity (pid 7730) has died: fg  TOP 
08-18 16:13:20.489  2049  5894 I WindowManager: WIN DEATH: Window{b7dd153 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}
08-18 16:13:20.559  2953  2988 V WindowManagerShell: start default transition animation, info = {id=4472 t=CLOSE f=0x10 trk=0 r=[0@Point(0, 0)] c=[{m=CLOSE f=FILLS_TASK leash=Surface(name=ActivityRecord{261165772 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28560}#17322)/@0x6c77d36 sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity}, taskId = 28560, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}},{m=TO_FRONT f=FILLS_TASK leash=Surface(name=ActivityRecord{263201714 u0 com.Test.augmentedreality/crc6444b2251530a39422.MainActivity t28560}#17305)/@0x8daf437 sb=Rect(0, 0 - 1440, 3120) eb=Rect(0, 0 - 1440, 3120) epz=Point(1440, 3120) d=0 bc=ff303030 activity=ActivityTransitionInfo { component = ComponentInfo{com.Test.augmentedreality/crc6444b2251530a39422.MainActivity}, taskId = 28560, appCompatTransitionInfo = null } opt={t=FROM_STYLE mUserId=0}}]}
08-18 16:13:20.875  2049  2106 W ActivityTaskManager: Activity top resumed state loss timeout for ActivityRecord{261165772 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity t28560 f} isExiting}
08-18 16:13:21.032  2049  2155 W WindowManager: Exception thrown during dispatchAppVisibility Window{b7dd153 u0 com.Test.augmentedreality/crc648322bbd6babf6475.UnityActivity EXITING}

Metadata

Metadata

Assignees

No one assigned

    Labels

    need-infoIssues that need more information from the author.

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions