Xcode模拟器没有崩溃,但存在实际器械问题

vmjh9lq9  于 2023-02-05  发布在  其他
关注(0)|答案(1)|浏览(616)

我通过模拟器在Xcode中运行我的应用程序,它构建时没有崩溃。当我在真实设备上运行时,它成功构建,但我得到崩溃错误。有人建议可能是 cordova 屏幕锁定,但我尝试了它没有,仍然有问题。
在真实设备上运行:一个 Flink 的屏幕或它不断重新加载第一个屏幕,永远不能使它到下一个。请帮助!
下面是我在与模拟器比较时看到的不同线条:

Metal API Validation Enabled

<UMP SDK> To enable debug mode for this device, set: UMPDebugSettings.testDeviceIdentifiers = @[ @"___________________________________" ];

THREAD WARNING: ['CDVOrientation'] took '44.751953' ms. Plugin should use a background thread.

[Process] 0x10f003740 - [PID=1655] WebProcessProxy::didClose: (web process 0 crash)
[Process] 0x10f003740 - [PID=1655] WebProcessProxy::processDidTerminateOrFailedToLaunch: reason=4

[ProcessSuspension] 0x10e0042a0 - ProcessAssertion: Failed to acquire RBS Background assertion 'ConnectionTerminationWatchdog' for process because PID 0 is invalid
[ProcessSuspension] 0x10e0042a0 - ProcessAssertion::acquireSync Failed to acquire RBS assertion 'ConnectionTerminationWatchdog' for process with PID=0, error: (null)
0x150842818 - [pageProxyID=13, webPageID=14, PID=1655] WebPageProxy::processDidTerminate: (pid 1655), reason 4

[assertion] Error acquiring assertion: <Error Domain=RBSServiceErrorDomain Code=1 "target is not running or doesn't have entitlement com.apple.runningboard.assertions.webkit" UserInfo={NSLocalizedFailureReason=target is not running or doesn't have entitlement com.apple.runningboard.assertions.webkit}>

[ProcessSuspension] 0x10e004300 - ProcessAssertion::acquireSync Failed to acquire RBS assertion 'WebProcess Background Assertion' for process with PID=1655, error: Error Domain=RBSServiceErrorDomain Code=1 "target is not running or doesn't have entitlement com.apple.runningboard.assertions.webkit" UserInfo={NSLocalizedFailureReason=target is not running or doesn't have entitlement com.apple.runningboard.assertions.webkit}

[Loading] 0x150842818 - [pageProxyID=13, webPageID=14, PID=1655] 
WebPageProxy::dispatchProcessDidTerminate: reason=Crash

[XPC] Handle connection with error: Connection interrupted

[Process] 0x10f004110 - [PID=0] WebProcessProxy::didFinishLaunching: Invalid connection identifier (web process failed to launch)
[Process] 0x10f004110 - [PID=0] WebProcessProxy::processDidTerminateOrFailedToLaunch: reason=4
[Process] 0x150842818 - [pageProxyID=13, webPageID=14, PID=0] WebPageProxy::processDidTerminate: (pid 0), reason 4

[ServicesDaemonManager] interruptionHandler is called. -[FontServicesDaemonManager connection]_block_invoke

[Process] 0x10f0048f0 - [PID=1682] WebProcessProxy::didClose: (web process 0 crash)
[Process] 0x10f0048f0 - [PID=1682] WebProcessProxy::processDidTerminateOrFailedToLaunch: reason=4

THREAD WARNING: ['AdMob'] took '30.550049' ms. Plugin should use a background thread.
THREAD WARNING: ['Consent'] took '10.710205' ms. Plugin should use a background thread.
hujrc8aj

hujrc8aj1#

我们在Xcode 14.2上发现了这个问题,网页视图无法加载。我们的WKWebViews设置了内容规则列表。根本原因是它将内容规则列表编译到底层芯片组(非英特尔),而不是遵循Rosetta。当Xcode在没有Rosetta的情况下启动时,没有发现这个问题。

相关问题