Error while transferring message from iwatch to iPhone WatchConnectivity framework

Viewed 19

I am working on an application which is sending motion and health vitals data from apple watch to iPhone using the WatchConnectivity framework. I am sending the data in every 1 second interval from apple watch and the data size is almost 7-8 KB. I was debugging this and after 20 mins of debugging I got a crash with log:

WatchKit Extension[468:167735] [scenes] unable to send specifiers:<__NSArrayM: 0x156ac410; count: 1> {
    <BLSAlwaysOnDateSpecifier: 0x156df570; date: 20:29:24.243; fidelity: Unspecified>;
} response to frameSpecifiersAction:<BLSFrameSpecifiersRequestAction: 0x156042b0; info: <BSSettings: 0x156042a0> {
    (1) = <_NSConcreteDateInterval: 0x16b1d390> (Start Date) 2022-09-07 14:59:24 +0000 + (Duration) 840.000000 seconds = (End Date) 2022-09-07 15:13:24 +0000;
    (3) = BSSettingFlagYes;
}; responder: <_BSActionResponder: 0x15604120; active: YES; waiting: NO> clientInvalidated = NO;
clientEncoded = NO;
clientResponded = NO;
reply = <BSMachPortSendOnceRight: 0x16b1d480; usable: NO; (468:ffffffff:send-once xpcCode) from (439:42313:send-once take)>;
annulled = YES;>
2022-09-07 20:46:27.302689+0530 XYZ WatchKit Extension[468:167735] [scenes] unable to send specifiers:<__NSArrayM: 0x16a88610; count: 1> {
    <BLSAlwaysOnDateSpecifier: 0x16a85a60; date: 20:29:34.245; fidelity: Unspecified>;
} response to frameSpecifiersAction:<BLSFrameSpecifiersRequestAction: 0x16b1d2f0; info: <BSSettings: 0x16b1d300> {
    (1) = <_NSConcreteDateInterval: 0x16b1d9c0> (Start Date) 2022-09-07 14:59:34 +0000 + (Duration) 840.000000 seconds = (End Date) 2022-09-07 15:13:34 +0000;
    (3) = BSSettingFlagYes;
}; responder: <_BSActionResponder: 0x16b1d5c0; active: YES; waiting: NO> clientInvalidated = NO;
clientEncoded = NO;
clientResponded = NO;
reply = <BSMachPortSendOnceRight: 0x16b1dab0; usable: NO; (468:ffffffff:send-once xpcCode) from (439:3ce23:send-once take)>;
annulled = YES;>
2022-09-07 20:46:27.304587+0530 XYZ WatchKit Extension[468:167735] [scenes] unable to send specifiers:<__NSArrayM: 0x16a8b6f0; count: 1> {
    <BLSAlwaysOnDateSpecifier: 0x16a85a60; date: 20:29:44.247; fidelity: Unspecified>;
} response to frameSpecifiersAction:<BLSFrameSpecifiersRequestAction: 0x16b1d9f0; info: <BSSettings: 0x16b1d930> {
    (1) = <_NSConcreteDateInterval: 0x16b1dff0> (Start Date) 2022-09-07 14:59:44 +0000 + (Duration) 840.000000 seconds = (End Date) 2022-09-07 15:13:44 +0000;
    (3) = BSSettingFlagYes;
}; responder: <_BSActionResponder: 0x16b1dbf0; active: YES; waiting: NO> clientInvalidated = NO;
clientEncoded = NO;
clientResponded = NO;
reply = <BSMachPortSendOnceRight: 0x16b1e0e0; usable: NO; (468:ffffffff:send-once xpcCode) from (439:42113:send-once take)>;
annulled = YES;>






dyld4 config: DYLD_FRAMEWORK_PATH=/Users/userpc/Library/Developer/Xcode/DerivedData/XYZ-dddddddd/Build/Products/Debug-iphoneos:/Users/userpc/Library/Developer/Xcode/DerivedData/XYZ-dddddddd/Build/Products/Debug-watchos:/Users/userpc/Library/Developer/Xcode/DerivedData/XYZ-dddddddd/Build/Products/Debug-iphoneos/PackageFrameworks:/Users/userpc/Library/Developer/Xcode/DerivedData/XYZ-dddddddd/Build/Products/Debug-watchos/PackageFrameworks DYLD_LIBRARY_PATH=/Users/userpc/Library/Developer/Xcode/DerivedData/XYZ-dddddddd/Build/Products/Debug-iphoneos:/Users/userpc/Library/Developer/Xcode/DerivedData/XYZ-dddddddd/Build/Products/Debug-watchos:/usr/lib/system/introspection DYLD_INSERT_LIBRARIES=/Developer/usr/lib/libBacktraceRecording.dylib:/Developer/usr/lib/libMainThreadChecker.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib

Is there anyone who faced this issue earlier ?

0 Answers
Related