Search Unity

Bug Null deference crash on Quest Pro

Discussion in 'VR' started by ADK2000, Feb 27, 2023.

  1. ADK2000

    ADK2000

    Joined:
    Nov 7, 2020
    Posts:
    1
    I'm having a problem where Unity crashes on the Quest Pro, throwing a 'Null deference' error. The last thing I was working on is recording audio on the quest (and then using that for speech-to-text analysis); and everything is working in the Editor.

    I've found multiple other posts from people that have this problem, but the few solutions that were posted there didn't fix it unfortunately.

    Code (CSharp):
    1. 0001/01/01 00:00:00.000 -1 -1 Info  --------- beginning of main
    2. 2023/02/27 12:01:39.689 30398 30978 Error CRASH *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
    3. 2023/02/27 12:01:39.689 30398 30978 Error CRASH Version '2021.3.17f1 (3e8111cac19d)', Build type 'Development', Scripting Backend 'il2cpp', CPU 'arm64-v8a'
    4. 2023/02/27 12:01:39.689 30398 30978 Error CRASH Build fingerprint: 'oculus/seacliff/seacliff:10/QQ3A.200805.001/49699250232600320:user/release-keys'
    5. 2023/02/27 12:01:39.689 30398 30978 Error CRASH Revision: '0'
    6. 2023/02/27 12:01:39.689 30398 30978 Error CRASH ABI: 'arm64'
    7. 2023/02/27 12:01:39.689 30398 30978 Error CRASH Timestamp: 2023-02-27 12:01:39+0100
    8. 2023/02/27 12:01:39.689 30398 30978 Error CRASH pid: 30398, tid: 30978, name: UnityMain  >>> com.Alex.Testproject <<<
    9. 2023/02/27 12:01:39.689 30398 30978 Error CRASH uid: 10106
    10. 2023/02/27 12:01:39.689 30398 30978 Error CRASH signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x12f
    11. 2023/02/27 12:01:39.689 30398 30978 Error CRASH Cause: null pointer dereference
    12. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x0  0000000000000000  x1  0000000000014564  x2  00000070beefe9b8  x3  0000000000000008
    13. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x4  00000071eb706228  x5  0c00000000000000  x6  000000000000800c  x7  3fff6d6e68736264
    14. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x8  0000000000000000  x9  0000000000000001  x10 0000000000000002  x11 0000000000000007
    15. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x12 00000070efc8027c  x13 0000000000000003  x14 00000000000014cf  x15 0000000000000000
    16. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x16 00000071edcc4378  x17 00000072d8e18c24  x18 00000070ada74000  x19 00000071e88b1300
    17. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x20 000000723f0a2b18  x21 000000000000012f  x22 00000071edf11000  x23 00000070ee5de608
    18. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x24 0000000000000001  x25 00000070a18fe4c0  x26 00000071edd84488  x27 00000070d65e9f80
    19. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     x28 00000071edd8a378  x29 00000070beefec50
    20. 2023/02/27 12:01:39.689 30398 30978 Error CRASH     sp  00000070beefe9a0  lr  00000071eb692760  pc  00000071eb692770
    21. 2023/02/27 12:01:39.689 30398 30978 Error CRASH
    22. 2023/02/27 12:01:39.689 30398 30978 Error CRASH backtrace:
    23. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #00 pc 0000000000a11770 (il2cpp::vm::Reflection::GetMethodObject(MethodInfo const*, Il2CppClass*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Reflection.cpp:171)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    24. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #01 pc 00000000009f6ff0 (il2cpp::icalls::mscorlib::System::Reflection::RuntimeMethodInfo::get_base_method(Il2CppReflectionMethod*, bool) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp:401)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    25. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #02 pc 0000000001be3424 (MonoCustomAttrs_GetBase_m68DA59644C3B034B1D09912F367D2AF727080765 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib7.cpp:20444)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    26. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #03 pc 0000000001be2a6c (MonoCustomAttrs_GetCustomAttributes_m77AB7AE8BA867E111261F1A957316CB088887999 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib7.cpp:17723)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    27. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #04 pc 0000000001bc04d4 (VirtualFuncInvoker2<ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool>::Invoke(unsigned short, Il2CppObject*, Type_t*, bool) at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib6.cpp:70)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    28. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #05 pc 0000000000c51fc8 (MatchIntentRegistry_RefreshAssemblies_mF584E089B402E1354F25B58179D4030462807571 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/Facebook.WitAI.cpp:8393)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    29. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #06 pc 0000000001c005c8 (ContextCallback_Invoke_m872CCCD40428B88C2612772491BE5157895B5F61_inline(ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007*, Il2CppObject*, MethodInfo const*) at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib8.cpp:32963)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    30. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #07 pc 00000000009ec644 (il2cpp::vm::Runtime::InvokeWithThrow(MethodInfo const*, void*, void**) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Runtime.cpp:567)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    31. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #08 pc 00000000009ec4b8 (il2cpp::vm::Runtime::Invoke(MethodInfo const*, void*, void**, Il2CppException**) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Runtime.cpp:553)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    32. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #09 pc 0000000000a73390 (il2cpp::icalls::mscorlib::System::Threading::ThreadStart(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp:64)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    33. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #10 pc 0000000000a7e5b8 (il2cpp::os::Thread::RunWrapper(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/os/Thread.cpp:201)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    34. 2023/02/27 12:01:39.689 30398 30978 Error CRASH       #11 pc 0000000000a406c8 (il2cpp::os::ThreadImpl::ThreadStartWrapper(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/os/Posix/ThreadImpl.cpp:125)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    35. 2023/02/27 12:01:39.690 30398 30978 Error CRASH       #12 pc 00000000000d4c44 (libc.so not found)  /apex/com.android.runtime/lib64/bionic/libc.so (pthread_attr_getdetachstate) (BuildId: 76160b7be02961a2e357c92bde57eb19)
    36. 2023/02/27 12:01:39.788 30398 30422 Error CRASH other thread is trapped; signum = 11
    37. 0001/01/01 00:00:00.000 -1 -1 Info  --------- beginning of crash
    38. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime FATAL EXCEPTION: UnityMain
    39. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime Process: com.Alex.Testproject, PID: 30398
    40. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime java.lang.Error: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
    41. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime Version '2021.3.17f1 (3e8111cac19d)', Build type 'Development', Scripting Backend 'il2cpp', CPU 'arm64-v8a'
    42. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime Build fingerprint: 'oculus/seacliff/seacliff:10/QQ3A.200805.001/49699250232600320:user/release-keys'
    43. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime Revision: '0'
    44. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime ABI: 'arm64'
    45. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime Timestamp: 2023-02-27 12:01:39+0100
    46. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime pid: 30398, tid: 30978, name: UnityMain  >>> com.Alex.Testproject <<<
    47. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime uid: 10106
    48. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x12f
    49. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime Cause: null pointer dereference
    50. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x0  0000000000000000  x1  0000000000014564  x2  00000070beefe9b8  x3  0000000000000008
    51. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x4  00000071eb706228  x5  0c00000000000000  x6  000000000000800c  x7  3fff6d6e68736264
    52. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x8  0000000000000000  x9  0000000000000001  x10 0000000000000002  x11 0000000000000007
    53. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x12 00000070efc8027c  x13 0000000000000003  x14 00000000000014cf  x15 0000000000000000
    54. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x16 00000071edcc4378  x17 00000072d8e18c24  x18 00000070ada74000  x19 00000071e88b1300
    55. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x20 000000723f0a2b18  x21 000000000000012f  x22 00000071edf11000  x23 00000070ee5de608
    56. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x24 0000000000000001  x25 00000070a18fe4c0  x26 00000071edd84488  x27 00000070d65e9f80
    57. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     x28 00000071edd8a378  x29 00000070beefec50
    58. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     sp  00000070beefe9a0  lr  00000071eb692760  pc  00000071eb692770
    59. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime
    60. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime backtrace:
    61. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #00 pc 0000000000a11770 (il2cpp::vm::Reflection::GetMethodObject(MethodInfo const*, Il2CppClass*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Reflection.cpp:171)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    62. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #01 pc 00000000009f6ff0 (il2cpp::icalls::mscorlib::System::Reflection::RuntimeMethodInfo::get_base_method(Il2CppReflectionMethod*, bool) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp:401)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    63. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #02 pc 0000000001be3424 (MonoCustomAttrs_GetBase_m68DA59644C3B034B1D09912F367D2AF727080765 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib7.cpp:20444)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    64. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #03 pc 0000000001be2a6c (MonoCustomAttrs_GetCustomAttributes_m77AB7AE8BA867E111261F1A957316CB088887999 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib7.cpp:17723)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    65. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #04 pc 0000000001bc04d4 (VirtualFuncInvoker2<ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool>::Invoke(unsigned short, Il2CppObject*, Type_t*, bool) at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib6.cpp:70)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    66. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #05 pc 0000000000c51fc8 (MatchIntentRegistry_RefreshAssemblies_mF584E089B402E1354F25B58179D4030462807571 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/Facebook.WitAI.cpp:8393)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    67. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #06 pc 0000000001c005c8 (ContextCallback_Invoke_m872CCCD40428B88C2612772491BE5157895B5F61_inline(ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007*, Il2CppObject*, MethodInfo const*) at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib8.cpp:32963)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    68. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #07 pc 00000000009ec644 (il2cpp::vm::Runtime::InvokeWithThrow(MethodInfo const*, void*, void**) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Runtime.cpp:567)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    69. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #08 pc 00000000009ec4b8 (il2cpp::vm::Runtime::Invoke(MethodInfo const*, void*, void**, Il2CppException**) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Runtime.cpp:553)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    70. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #09 pc 0000000000a73390 (il2cpp::icalls::mscorlib::System::Threading::ThreadStart(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp:64)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    71. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #10 pc 0000000000a7e5b8 (il2cpp::os::Thread::RunWrapper(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/os/Thread.cpp:201)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    72. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #11 pc 0000000000a406c8 (il2cpp::os::ThreadImpl::ThreadStartWrapper(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/os/Posix/ThreadImpl.cpp:125)  /data/app/com.Alex.Testproject-Zug9WTD6CUuilwWDThO5TA==/lib/arm64/libil2cpp.so (BuildId: 8d508dfb1af1254b0e626bdcf7c96fea5b84d7f6)
    73. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime       #12 pc 00000000000d4c44 (libc.so not found)  /apex/com.android.runtime/lib64/bionic/libc.so (pthread_attr_getdetachstate) (BuildId: 76160b7be02961a2e357c92bde57eb19)
    74. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime
    75. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0xa11770 (il2cpp::vm::Reflection::GetMethodObject(MethodInfo const*, Il2CppClass*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Reflection.cpp:171)(Native Method)
    76. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0x9f6ff0 (il2cpp::icalls::mscorlib::System::Reflection::RuntimeMethodInfo::get_base_method(Il2CppReflectionMethod*, bool) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/icalls/mscorlib/System.Reflection/RuntimeMethodInfo.cpp:401)(Native Method)
    77. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0x1be3424 (MonoCustomAttrs_GetBase_m68DA59644C3B034B1D09912F367D2AF727080765 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib7.cpp:20444)(Native Method)
    78. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0x1be2a6c (MonoCustomAttrs_GetCustomAttributes_m77AB7AE8BA867E111261F1A957316CB088887999 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib7.cpp:17723)(Native Method)
    79. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0x1bc04d4 (VirtualFuncInvoker2<ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Type_t*, bool>::Invoke(unsigned short, Il2CppObject*, Type_t*, bool) at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib6.cpp:70)(Native Method)
    80. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0xc51fc8 (MatchIntentRegistry_RefreshAssemblies_mF584E089B402E1354F25B58179D4030462807571 at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/Facebook.WitAI.cpp:8393)(Native Method)
    81. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0x1c005c8 (ContextCallback_Invoke_m872CCCD40428B88C2612772491BE5157895B5F61_inline(ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007*, Il2CppObject*, MethodInfo const*) at C:/Users/alexDK/TACTSIM_QUESTPRO/TactsimQuestPro/Library/Bee/artifacts/Android/il2cppOutput/cpp/mscorlib8.cpp:32963)(Native Method)
    82. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0x9ec644 (il2cpp::vm::Runtime::InvokeWithThrow(MethodInfo const*, void*, void**) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Runtime.cpp:567)(Native Method)
    83. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0x9ec4b8 (il2cpp::vm::Runtime::Invoke(MethodInfo const*, void*, void**, Il2CppException**) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/vm/Runtime.cpp:553)(Native Method)
    84. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0xa73390 (il2cpp::icalls::mscorlib::System::Threading::ThreadStart(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/icalls/mscorlib/System.Threading/Thread.cpp:64)(Native Method)
    85. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0xa7e5b8 (il2cpp::os::Thread::RunWrapper(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/os/Thread.cpp:201)(Native Method)
    86. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libil2cpp.0xa406c8 (il2cpp::os::ThreadImpl::ThreadStartWrapper(void*) at C:/Program Files/Unity/Hub/Editor/2021.3.17f1/Editor/Data/il2cpp/libil2cpp/os/Posix/ThreadImpl.cpp:125)(Native Method)
    87. 2023/02/27 12:01:39.789 30398 30422 Error AndroidRuntime     at libc.pthread_attr_getdetachstate(pthread_attr_getdetachstate:0)
    88.  
     
  2. thep3000

    thep3000

    Unity Technologies

    Joined:
    Aug 9, 2013
    Posts:
    400
    I see `Facebook.WitAI` in the callstack - it seems to be triggering some reflection. Perhaps try disabling that library as a first step?