Coder Social home page Coder Social logo

mtford90 / react-native-watch-connectivity Goto Github PK

View Code? Open in Web Editor NEW
699.0 15.0 89.0 19.1 MB

Enable communication between apple watch app and react native

Home Page: http://mtford.co.uk/react-native-watch-connectivity/

License: MIT License

JavaScript 1.63% Objective-C 22.06% Ruby 4.12% Swift 10.59% C 0.15% TypeScript 61.46%
iwatch watch react react-native

react-native-watch-connectivity's Introduction

React Native Watch Connectivity

Communicate with your Apple Watch apps over the React Native bridge.

Note: This library does not allow you to write your Apple Watch apps in React Native but rather allows your RN iOS app to communicate with a watch app written in Obj-C/Swift. If you want to build a Wear OS app using react-native refer to react-native-wear-connectivity.

Documentation

http://mtford.co.uk/react-native-watch-connectivity/

Demo

The featured screenshot is from the example app. To run the example:

git clone https://github.com/mtford90/react-native-watch-connectivity.git
cd react-native-watch-connectivity/example
yarn install
cd ios
pod install
cd ..
yarn ios # Run app
open ios/RNWatchExample.xcworkspace # Run watch app from Xcode

Install

npm install react-native-watch-connectivity --save
# or
yarn add react-native-watch-connectivity

Link

Note: this library now supports autolinking for RN 0.60+.

For RN <0.60 link via:

react-native link

Or else add the xcodeproj or .h/.m files directly to your project via XCode

Manual Linking

Or you can link the library manually by adding node_modules/react-native-watch-connectivity/ios/RNWatch.xcodeproj to your project and ensuring that libRNWatch.a is present in the Link Binary With Libraries build phase.

Alternatively, if you're using CocoaPods, you can add the following to your Podfile:

pod 'RNWatch', :path => '../node_modules/react-native-watch-connectivity'

and run pod install.

Expo Support

This library has been successfully used in Expo apps (Bare Workflow with EAS Build).

react-native-watch-connectivity's People

Contributors

ataman11 avatar dependabot[bot] avatar fabonreact avatar greenkeeper[bot] avatar jrdn91 avatar khl3o avatar marcosrdz avatar mars-lan avatar mdescalzo avatar mtford90 avatar petrbela avatar saghul avatar udfalkso avatar walterholohan avatar yolpsoftware avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

react-native-watch-connectivity's Issues

Android wear?

No experience with android development but I believe this would be a cool addition to this repo!

Application Context and User Info not being transferred

I have a Watch companion app which uses react-native-watch-connectivity to communicate with the phone.

The app was using sendMessage successfully most of the time, but due to some reliability problems, we are currently switching to User Info and Application Context.

However, in our tests, we haven't yet been able to transfer a single bit of information via User Info or Application Context. On the Watch side, we do not receive any calls to didReceiveUserInfo or didReceiveApplicationContext.

This happens on both the simulator and the actual device. It also happens on a Testflight build. The iPhone sends data but the watch never receives it. It only receives the data sent by sendMessage. I have waited several minutes, for a very small object, to make sure it is not an issue of time.

Also, when we call WCSession.default.receivedApplicationContext we get a context, but it has nothing to do with the context sent by the phone app.

There is no apparent exception or error, on either side. The only error I sometimes see in the XCode logs is this:

2022-04-10 21:45:04.090367+0200 watchapp WatchKit Extension[72856:99542367] void * _Nullable NSMapGet(NSMapTable * _Nonnull, const void * _Nullable): map

However, the timing of this error does not really fit the timing of the data transfer. Moreover, I'm pretty sure this error does not appear every time.

How can I debug this? What is the likely cause for this? Is there some requirement for Application Context like an entitlement?

linking in Xcode 14 and iOS16

Does this work with new command line tools? I get this error when try to run in expo.
telegram-cloud-photo-size-4-5868501231897525149-y

It worked until the new update. I tried manual linking editing the podfile, pod install etc.

'WatchBridge.h' file not found

My AppDelegate.h

#import <React/RCTBridgeDelegate.h>
#import <UIKit/UIKit.h>

// Push Notifications
#import <UserNotifications/UserNotifications.h>

// WatchConnectivity
@import WatchConnectivity;
@class WatchBridge;

@interface AppDelegate : UIResponder <UIApplicationDelegate, RCTBridgeDelegate, UNUserNotificationCenterDelegate>

@property (nonatomic, strong) UIWindow *window;
@property(nonatomic, strong) WatchBridge *watchBridge;
@property(nonatomic, strong) WCSession *session;

@end

My AppDelegate.m

#import "WatchBridge.h" ==> Error HERE

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
  NSString *GOOGLE_MAPS_APIKEY = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"GOOGLE_MAPS_APIKEY"];
   NSString *URL_BASE = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"URL_BASE"];
  
  [GMSServices provideAPIKey:GOOGLE_MAPS_APIKEY];
  
  [NSThread sleepForTimeInterval:2.0];
  
  NSDictionary *props = @{@"GOOGLE_MAPS_APIKEY" : GOOGLE_MAPS_APIKEY ,@"URL_BASE" : URL_BASE};
  
  RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
  RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge
                                                   moduleName:@"xxxx"
                                            initialProperties:props];

  rootView.backgroundColor = [[UIColor alloc] initWithRed:1.0f green:1.0f blue:1.0f alpha:1];

  self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
  UIViewController *rootViewController = [UIViewController new];
  rootViewController.view = rootView;
  self.window.rootViewController = rootViewController;
  [self.window makeKeyAndVisible];
  
  // Define UNUserNotificationCenter
  UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter];
  center.delegate = self;
  
  // Analytics
  [FIRApp configure];
    
  self.watchBridge = [WatchBridge shared];
  self.session = self.watchBridge.session;
    
  return YES;
}

Version:

"react-native-watch-connectivity": "0.2.0",

INFO:

info 
  React Native Environment Info:
    System:
      OS: macOS 10.14.5
      CPU: (4) x64 Intel(R) Core(TM) i3-8100B CPU @ 3.60GHz
      Memory: 69.64 MB / 8.00 GB
      Shell: 3.2.57 - /bin/bash
    Binaries:
      Node: 8.9.1 - ~/.nvm/versions/node/v8.9.1/bin/node
      Yarn: 1.13.0 - /usr/local/bin/yarn
      npm: 5.5.1 - ~/.nvm/versions/node/v8.9.1/bin/npm
      Watchman: 4.9.0 - /usr/local/bin/watchman
    SDKs:
      iOS SDK:
        Platforms: iOS 12.1, macOS 10.14, tvOS 12.1, watchOS 5.1
      Android SDK:
        API Levels: 22, 26, 27, 28
        Build Tools: 28.0.3
        System Images: android-22 | Google APIs Intel x86 Atom, android-26 | Intel x86 Atom_64, android-27 | Intel x86 Atom_64, android-28 | Intel x86 Atom_64, android-28 | Google APIs Intel x86 Atom
    IDEs:
      Android Studio: 3.4 AI-183.6156.11.34.5522156
      Xcode: 10.1/10B61 - /usr/bin/xcodebuild
    npmPackages:
      react: 16.8.3 => 16.8.3 
      react-native: 0.59.5 => 0.59.5 
    npmGlobalPackages:
      react-native-cli: 2.0.1

FileTransferEvent.h file not found

Hi,

I get the below error in XCode:
node_modules/react-native-watch-connectivity/ios/RNWatch/RNWatch.m:3:9: 'FileTransferEvent.h' file not found

Package.json content:
"react-native-watch-connectivity": "^1.0.0"

Module already linked. React native version: 0.62.0

Any idea?

Thanks

WatchBridge.m has error: 'Module WatchBridge requires....'

I use 'react-native-watch-connectivity' for my app, but when I start my app and
connect my Apple Watch, console has the following error:
'Module WatchBridge requires main queue setup since it overrides init but doesn't implement requiresMainQueueSetup. In a future release React Native will default to initializing all native modules on a background thread unless explicitly opted-out of. '

I guess this error is occurred because of the version of react-native.
I confirm we can avoid this issue to add below descriptions.

+ (BOOL)requiresMainQueueSetup {
  return YES;
}

cf )
braze-inc/braze-react-native-sdk@baea302

subscribeToWatchReachability returns null

Hi,

I am trying to use this library. Whenever I open the Apple Watch App on the simulator, the callback is triggered and I actually console log something, but the value is always null.

    const unsubscribe = watch.subscribeToWatchReachability(watchIsReachable => {
      this.setState({watchIsReachable})
      console.log(watchIsReachable)
    })

The session.isReachable from the Apple Watch App.

getUserInfo on react native side

receiveUserInfo method is not getting called on react-native side when the watch app tries to send userinfo.
This method is getting triggered only after reloading the react-native app.
Below is the code

AppDelegate.m

self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
self.window.backgroundColor = [UIColor whiteColor];
self.watchBridge = [WatchBridge shared];
self.session = self.watchBridge.session;

watch side:

let message = ["message": "message"] as [String : Any]
session.transferUserInfo(message)

React-Native side:

receiveUserInfo(err, info) {
try {
if ((!err) ) {
print("no error")
}
}
} catch (ex) {
}
}

iOS 15.6 WCSession

Hi!,

It's still working on iOS 15.6?. Im facing an issue with WCSession that never called.

Thanks!.

Problem with your description

When i use pod install, I'm getting this error:
The RNWatch pod failed to validate due to 1 error:

In your package.json file, can you add description to resolve this problem ?

Delegate not implemented

Hi, I'm having some problems with this library... I followed everything from example folder but I'm getting the following error on Xcode when I'm trying to send a message...

Extension[62443:902546] [WC] -[WCSession onqueue_handleDictionaryMessageRequest:withPairingID:]_block_invoke delegate Example_watchOS_Extension.InterfaceController does not implement delegate method
Extension[62443:902546] [WC] -[WCSession _onqueue_sendResponseError:identifier:dictionaryMessage:] identifier: 31A221F5-C7E1-4F41-BB72-CA4081ABC850 with WCErrorCodeDeliveryFailed

Do you have any idea?

License?

Hello,

we've been using your lib in our project, but just now we noticed that there is no license. If this helpful lib is indeed meant for common open-source use, being publicly available on GitHub and npm, would you mind adding a simple MIT license or something like it to the repository? The law pretty much requires it, that's why I'm asking. https://opensource.guide/legal/

Many thanks.

com.facebook.react.WatchBridgeQueue Crashed

I have submitted my iOS/appleWatch to the App Store.

I test it on simulator and device, and all was good.

But in the apple reviewer feedback, my app crashed:

Thread 10 name: Dispatch queue: com.facebook.react.WatchBridgeQueue
Thread 10 Crashed: Thread 10 crashed with ARM Thread State (64-bit):
Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY

I can not reproduce this crash but in my console I have the following warning:

Module WatchBridge requires main queue setup since it overrides init but doesn't implement requiresMainQueueSetup. In a future release React Native will default to initializing all native modules on a background thread unless explicitly opted-out of.

Is this warning can crash the app ?

I don't understand very well this message and what can I do to avoid it, have you more informations about how to resolve it ?

Thx

Sending 'WatchStateChanged' with no listeners registered. (Yellow warning on iOS)

I am using react-native-watch-connectivity on a single page in my app, simply checking to see if a watch is paired with the phone. This part works great. However, when my app now loads, I am getting a yellow warning on iOS - Sending 'WatchStateChanged' with no listeners registered. I have tried everything that I can think of, but nothing seems to make this warning go away. Can anyone tell me how you are getting around this? What am I missing? - Thanks, Ricky.

Publish changelog

@mtford90 could you start keeping/publishing a changelog so people know what goes into each release on NPM? It's a bit difficult to reverse engineer that based on the commit history.

Wake up iPhone app when a Watch message arrives

Apple's WatchKit and WatchConnectivity libraries have the feature that a message from the Watch app can wake up the iPhone app in the background. This way, the iPhone app can provide some information to the Watch app, without the user noticing it on the iPhone.

I do not know the details of such a background activity on the iPhone app. All I can say is that I got such an example running as follows (if you do know the details of such a background activity, then skip down to my question):

  1. In your iPhone app, open AppDelegate.m and add the following five lines, starting at line 38:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
#if defined(FB_SONARKIT_ENABLED) && __has_include(<FlipperKit/FlipperClient.h>)
  InitializeFlipper(application);
#endif

  NSLog(@"activating WCSession");                       // <<<=== add these five lines (here is line 38)
  if ([WCSession isSupported]) {
    [WCSession defaultSession].delegate = self;
    [[WCSession defaultSession] activateSession];
  }                                                     // <<<=== until here

  RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions];
  RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge moduleName:@"main" init
  1. Again in AppDelegate.m, add the following three lines, starting at line 64:
  [super application:application didFinishLaunchingWithOptions:launchOptions];

  return YES;
}

- (void)session:(WCSession *)session didReceiveMessage:(NSDictionary<NSString *,id> *)message replyHandler:(void (^)(NSDictionary<NSString *,id> *replyMessage))replyHandler {    // <<<=== add these three lines
  replyHandler(@{@"message": @"replying from the background"});
}                                                                                // <<<=== until here

- (NSArray<id<RCTBridgeModule>> *)extraModulesForBridge:(RCTBridge *)bridge
{
  1. Now build the app for a real device (Apple Watch simulator seems very buggy when working with connectivity) and open the app on both the iPhone and the Watch.
  2. Now kill the app on the iPhone (you have to swipe it up in the recent-apps list, so that the app's process is terminated).
  3. Now send a message from the Watch to the iPhone.
  4. The iPhone answers with a { "message": "replying from the background" } message object.

My question is, does react-native-watch-connectivity support such a use case?

If it supports it (or will support it sometime), then I wonder how the interaction with our React Javascript code will look like when the app is in the background. Since there is no UI in the background, I suppose there will not be much React stuff. But our business logic (e.g. Redux reducers), we surely need it to run in order to be able to provide the Watch app with the information it needs.

Any ideas?

send message time out

des:
Error Domain=com.apple.identityservices.error Code=23 "Timed out" UserInfo={NSLocalizedDescription=Timed out, NSUnderlyingError=0x600002485260 {Error Domain=com.apple.ids.idssenderrordomain Code=12 "(null)"}}
device: M1 mac mini
x-cdoe: 13.4.1

Illegal callback invocation from native module.

screen shot 2018-10-09 at 10 27 05 am

RN: 0.55.4
iOS 11.4

Not sure why I'm getting this error if anyone has an idea.

Illegal callback invocation from native module. This callback type only permits a single invocation from native code.

RCTFatal
checkCallbackMultipleInvocations(bool*)
__41-[RCTModuleMethod processMethodSignature]_block_invoke_2.187
__47-[WatchBridge sendMessage:replyCallback:error:]_block_invoke.102
__70-[WCSession _onqueue_notifyOfMessageError:messageID:withErrorHandler:]_block_invoke
__NSBLOCKOPERATION_IS_CALLING_OUT_TO_A_BLOCK__
-[NSBlockOperation main]
-[__NSOperationInternal _start:]
__NSOQSchedule_f
_dispatch_client_callout
_dispatch_continuation_pop
_dispatch_async_redirect_invoke
_dispatch_root_queue_drain
_dispatch_worker_thread3
_pthread_wqthread
start_wqthread

Migration from 0.4.x -> 1.x

Hi! I'm working on upgrading our usage of this package from 0.4.x to the latest version. I don't see anything major in the commit list. Is there anything I need to change in my usage of the package for 1.x? The changelog doesn't cover pre-1.x versions.
Thanks!

Unsubscribing from a watch subscription does not work

If I try to unsubscribe by calling the function created, I get this error:

Cannot read property 'emitter' of undefined

In the sample project it also does not work and the same error is seen if you try to unsubscribe after subscribing in componentDidMount.

I have messed with different contexts and always get an error. The other error is:

Cannot read property 'removeSubscription' of undefined

Any help getting this fixed would be greatly appreciated!

Message reply took too long

sendMessage from Watch to IOS doesn't seem to be waking up the app in the background. Am I missing something in Appdelegate to handle this?

Sending messages both ways works fine when the IOS app is in the foreground, but if it isn't I get the following:

Error Domain=WCErrorDomain Code=7012 "Message reply took too long." UserInfo={NSLocalizedFailureReason=Reply timeout occurred., NSLocalizedDescription=Message reply took too long.}

Thanks!

can't be build because headers not found

I clone your repository, installed it, opened it and tried to build in XCode Version 9.2 (9C40b)

react-native-watch-connectivity/node_modules/react-native/Libraries/Network/RCTNetworkTask.m:10:9: 'React/RCTLog.h' file not found

thx for your help

Messages received multiple times on iOS device?

I am writing to see if anyone has experienced the same issue where you send a message from the apple watch in swift and receive it on the react-native side but I am receiving each message 5-10 times? In the image below I send 3 message with samples and get way too many responses (and I'm using a physical device, not a simulator)

Screen Shot 2020-06-30 at 5 45 43 PM

I'm using the example subscription to receive

Screen Shot 2020-06-30 at 5 47 11 PM
the messages:

Scope clarification for this library

It seems like this library only allow communication from an iOS device to the "Watch App" running on a watchOS device. And the "Watch App" is the app you guys wrote in the sample code.

Can the library be used to communicate with other watch apps that we write? The API written in the docs doesn't give a choice to communicate with any other apps. Is this library created only for demo purpose?
Can it be extended so then any watch app that follows certain protocol will be able to communicate with this library?

Expo support

Hi,have you consider supporting expo? I am and was wondering if you had any advice. If it's possible maybe we can collaborate?

Kind regards,
Stephen

Can I start WatchOS companion app programmatically?

I've added a WatchOS companion app and connected it using this library. Communication works flawlessly!

Is it possible to start the watch app from the main app using this library (either programmatically or as "default")?

Redefinition of 'RCTMethodInfo'

Hi,

I added react-native-watch-connectivity to my project.

I have the following errors when I build my app:

Debug-iphonesimulator/include/React/RCTBridgeModule.h:54:16: Redefinition of 'RCTMethodInfo'

Typedef redefinition with different types ('struct (anonymous struct at Debug-iphonesimulator/include/React/RCTBridgeModule.h:54:16)' vs 'struct RCTMethodInfo')

Xcode 9.2 (9C40b) + react-native 0.53.0

EXC_BAD_ACCESS RNWatch.m:195 Attempted to dereference garbage pointer 0x10

We have integrated RNWatchConnectivity with our app, and now we are getting some errors in our error reporting service and we are not sure how they could be reproduced. Could you please help here?

Stacktrace:

EXC_BAD_ACCESS Attempted to dereference garbage pointer 0x10. 
    /Users/vagrant/git/node_modules/react-native-watch-connectivity/ios/RNWatch/RNWatch.m:195:5 -[RNWatch replyToMessageWithId:withMessage:]
    Frameworks/CoreFoundation.framework/CoreFoundation ___invoking___
    Frameworks/CoreFoundation.framework/CoreFoundation -[NSInvocation invoke]
    Frameworks/CoreFoundation.framework/CoreFoundation -[NSInvocation invokeWithTarget:]
    /Users/vagrant/git/node_modules/react-native/React/Base/RCTModuleMethod.mm:584:3 -[RCTModuleMethod invokeWithBridge:module:arguments:]
    /Users/vagrant/git/node_modules/react-native/React/CxxModule/RCTNativeModule.mm:114:17 invokeInner
    /Users/vagrant/git/node_modules/react-native/React/CxxModule/RCTNativeModule.mm:75:5 ___ZN8facebook5react15RCTNativeModule6invokeEjON5folly7dynamicEi_block_invoke
    /usr/lib/system/libdispatch.dylib __dispatch_call_block_and_release
    /usr/lib/system/libdispatch.dylib __dispatch_client_callout
    /usr/lib/system/libdispatch.dylib __dispatch_lane_serial_drain
    /usr/lib/system/libdispatch.dylib __dispatch_lane_invoke
    /usr/lib/system/libdispatch.dylib __dispatch_workloop_worker_thread
    /usr/lib/system/libsystem_pthread.dylib __pthread_wqthread

Is this maintained?

Hi, Iโ€™m pondering whether I should be using this in a production-grade commercial application and was wondering how maintained this package is.

Iโ€™ve seen some of the issues have been open for quite some time, but didnโ€™t want to jump to conclusions, so here I am.

Thanks!

get ApplicationContext on react-native side

I have a watchKit app connected with a react-native iOS app with react-native-watch-connectivity.

I want to use the applicationContext to communicate between the devices.

From react-native, I use watch.updateApplicationContext({ dataFromRN: "data" }) to define it and I can get it in iWatch side.

But when I use updateApplicationContext(["data":"data"]) in iWatch side, an updated context event is catch by react-native but the data is not updated.

// iWatch
try session?.updateApplicationContext(["dataFromWatch":"data"])
print(session?.applicationContext ?? "")

["dataFromWatch": "data"]

but in react-native, I have the following output for this event:

// react-native iOS
receiveApplicationContext(err, applicationContext) {
  console.log("receiveApplicationContext()", applicationContext)

receiveApplicationContext() {dataFromRN: "data"}

dataFromRN is a previous applicationContext defined from react-native side.

Event if react-native catch an event, the applicationContext is not updated.

I guess I have to update something in react-native-watch-connectivity, but I would like to know where.

If you have any element to fix this issue...

Thx

iOS side (with react-native)

import React, { Component } from "react";
import {
  Platform,
  StyleSheet,
  Text,
  View,
  ScrollView,
  AsyncStorage,
  TouchableHighlight
} from "react-native";
import * as watch from "react-native-watch-connectivity";

type Props = {};
export default class App extends Component<Props> {
  constructor(props) {
    super(props);
    this.state = { match: [] };
    this.receiveUserInfo = this.receiveUserInfo.bind(this);
    this.subscribeToApplicationContext = this.subscribeToApplicationContext.bind(this);
    this.subscribeToWatchEvents = this.subscribeToWatchEvents.bind(this);
  }

  receiveUserInfo(err, userInfo) {
    if (!err) {
      if (userInfo.currentMatch !== undefined) {
        console.log("receiveUserInfo()", userInfo);
      }
    }
  }

  receiveApplicationContext(err, applicationContext) {
    if (!err) {
      console.log("receiveApplicationContext()", applicationContext);
        watch.getApplicationContext().then(context => {
        console.log("getApplicationContext()", context);
      });
    }
  }

  subscribeToWatchEvents() {
    this.subscriptions = [
      watch.subscribeToUserInfo(this.receiveUserInfo),
      watch.subscribeToApplicationContext(this.receiveApplicationContext)
    ];
  }

  componentDidMount() {
    this.subscribeToWatchEvents();
  }

  componentWillUnmount() {}

  render() {
    return (
      <View/>
    );
  }
}

iWatch side (swift)

import WatchKit
import Foundation
import WatchConnectivity

class MainController: WKInterfaceController, WCSessionDelegate {
  
  var session: WCSession?
  
  override func awake(withContext context: Any?) {
    super.awake(withContext: context)
    if WCSession.isSupported() {
      self.session = WCSession.default
      self.session?.delegate = self
      self.session?.activate()
    }
  }
  
  func session(_ session: WCSession, activationDidCompleteWith activationState: WCSessionActivationState, error: Error?) {
    print("activationDidCompleteWith", activationState)
  }
  
  func session(_ session: WCSession, didReceiveApplicationContext applicationContext: [String : Any]) {
    print("didReceiveApplicationContext", applicationContext)
  }
  
  func sendUserInfo() {
    session?.transferUserInfo(["data":"data"])
    do {
      try session?.updateApplicationContext(["data":"data"])
    } catch {
      print("updateApplicationContext error")
    }
    print(session?.applicationContext ?? "")
  }
  
  @IBAction func point() {
    sendUserInfo()
  }
  
}

com.facebook.react.WatchBridgeQueue Crashed on boot

I have submitted our iOS/appleWatch to the App Store.

I test it on simulator and device, and all was good.

But in the apple reviewer feedback, my app crashed on boot

Using the latest xcode

help needed any clue

RN 0.50.1

{"app_name":"","timestamp":"2019-01-24 09:21:46.61 -0800","app_version":"2.2.1","slice_uuid":"4e95b355-0de8-3ae3-9d03-dcdd635b9877","adam_id":1053767884,"build_version":"1","bundleID":"com..hike","share_with_app_devs":false,"is_first_party":false,"bug_type":"109","os_version":"iPhone OS 12.1.3 (16D39)","incident_id":"612F309D-FC9B-4C60-B21B-D268C4CA2A6F","name":""}
Incident Identifier: 612F309D-FC9B-4C60-B21B-D268C4CA2A6F
CrashReporter Key: 0485d10130accdca6b0a43965097aad778546969
Hardware Model: xxx1
Process: [1655]
Path: /private/var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/.app/
Identifier: com..hike
Version: 1 (2.2.1)
AppStoreTools: 10B63
Code Type: ARM-64 (Native)
Role: Non UI
Parent Process: launchd [1]
Coalition: com..hike [784]

Date/Time: 2019-01-24 09:21:46.4911 -0800
Launch Time: 2019-01-24 09:21:44.6727 -0800
OS Version: iPhone OS 12.1.3 (16D39)
Baseband Version: n/a
Report Version: 104

Exception Type: EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
Triggered by Thread: 1

Application Specific Information:
abort() called

Last Exception Backtrace:
(0x1a5df8ec4 0x1a4fc9a50 0x1a5cff594 0x1045a6310 0x1045f7310 0x1045f6e90 0x1a58316c8 0x1a5832484 0x1a57d9bd0 0x1a57da718 0x1a57e2eb8 0x1a5a150dc 0x1a5a17cec)

Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 libsystem_kernel.dylib 0x00000001a5983ea4 0x1a596c000 + 97956
1 libsystem_kernel.dylib 0x00000001a598337c 0x1a596c000 + 95100
2 CoreFoundation 0x00000001a5d88be8 0x1a5cdd000 + 703464
3 CoreFoundation 0x00000001a5d83a84 0x1a5cdd000 + 682628
4 CoreFoundation 0x00000001a5d831f0 0x1a5cdd000 + 680432
5 Foundation 0x00000001a6779494 0x1a6771000 + 33940
6 Foundation 0x00000001a6779340 0x1a6771000 + 33600
7 0x000000010470d0c4 0x104428000 + 3035332
8 0x000000010442fbe8 0x104428000 + 31720
9 UIKitCore 0x00000001d2d07ca0 0x1d2428000 + 9305248
10 UIKitCore 0x00000001d2d09408 0x1d2428000 + 9311240
11 UIKitCore 0x00000001d2d0ee54 0x1d2428000 + 9334356
12 UIKitCore 0x00000001d25aa93c 0x1d2428000 + 1583420
13 UIKitCore 0x00000001d25b35bc 0x1d2428000 + 1619388
14 UIKitCore 0x00000001d25aa5b8 0x1d2428000 + 1582520
15 UIKitCore 0x00000001d25aaf58 0x1d2428000 + 1584984
16 UIKitCore 0x00000001d25a9058 0x1d2428000 + 1577048
17 UIKitCore 0x00000001d25a8d04 0x1d2428000 + 1576196
18 UIKitCore 0x00000001d25adec4 0x1d2428000 + 1597124
19 UIKitCore 0x00000001d25aee24 0x1d2428000 + 1601060
20 UIKitCore 0x00000001d25add7c 0x1d2428000 + 1596796
21 UIKitCore 0x00000001d25b2c68 0x1d2428000 + 1617000
22 UIKitCore 0x00000001d2d0d34c 0x1d2428000 + 9327436
23 UIKitCore 0x00000001d28f8244 0x1d2428000 + 5046852
24 FrontBoardServices 0x00000001a882f9d4 0x1a8823000 + 51668
25 FrontBoardServices 0x00000001a883a79c 0x1a8823000 + 96156
26 FrontBoardServices 0x00000001a8839e94 0x1a8823000 + 93844
27 libdispatch.dylib 0x00000001a5832484 0x1a57d1000 + 398468
28 libdispatch.dylib 0x00000001a57d5e10 0x1a57d1000 + 19984
29 FrontBoardServices 0x00000001a886ea9c 0x1a8823000 + 309916
30 FrontBoardServices 0x00000001a886e728 0x1a8823000 + 309032
31 FrontBoardServices 0x00000001a886ed44 0x1a8823000 + 310596
32 CoreFoundation 0x00000001a5d891f0 0x1a5cdd000 + 705008
33 CoreFoundation 0x00000001a5d89170 0x1a5cdd000 + 704880
34 CoreFoundation 0x00000001a5d88a54 0x1a5cdd000 + 703060
35 CoreFoundation 0x00000001a5d83920 0x1a5cdd000 + 682272
36 CoreFoundation 0x00000001a5d831f0 0x1a5cdd000 + 680432
37 GraphicsServices 0x00000001a7ffc584 0x1a7ff1000 + 46468
38 UIKitCore 0x00000001d2d10c00 0x1d2428000 + 9341952
39 S 0x0000000104430008 0x104428000 + 32776
40 libdyld.dylib 0x00000001a5842bb4 0x1a5842000 + 2996

Thread 1 name: Dispatch queue: com.facebook.react.WatchBridgeQueue
Thread 1 Crashed:
0 libsystem_kernel.dylib 0x00000001a598f104 0x1a596c000 + 143620
1 libsystem_pthread.dylib 0x00000001a5a0b020 0x1a5a09000 + 8224
2 libsystem_c.dylib 0x00000001a58e6d78 0x1a588f000 + 359800
3 libc++abi.dylib 0x00000001a4fb0f78 0x1a4faf000 + 8056
4 libc++abi.dylib 0x00000001a4fb1120 0x1a4faf000 + 8480
5 libobjc.A.dylib 0x00000001a4fc9e58 0x1a4fc3000 + 28248
6 S 0x000000010454affc 0x104428000 + 1191932
7 libc++abi.dylib 0x00000001a4fbd0fc 0x1a4faf000 + 57596
8 libc++abi.dylib 0x00000001a4fbd188 0x1a4faf000 + 57736
9 libdispatch.dylib 0x00000001a5832498 0x1a57d1000 + 398488
10 libdispatch.dylib 0x00000001a57d9bd0 0x1a57d1000 + 35792
11 libdispatch.dylib 0x00000001a57da718 0x1a57d1000 + 38680
12 libdispatch.dylib 0x00000001a57e2eb8 0x1a57d1000 + 73400
13 libsystem_pthread.dylib 0x00000001a5a150dc 0x1a5a09000 + 49372
14 libsystem_pthread.dylib 0x00000001a5a17cec 0x1a5a09000 + 60652

Thread 2:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 3:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 4:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 5 name: com.apple.uikit.eventfetch-thread
Thread 5:
0 libsystem_kernel.dylib 0x00000001a5983ea4 0x1a596c000 + 97956
1 libsystem_kernel.dylib 0x00000001a598337c 0x1a596c000 + 95100
2 CoreFoundation 0x00000001a5d88be8 0x1a5cdd000 + 703464
3 CoreFoundation 0x00000001a5d83a84 0x1a5cdd000 + 682628
4 CoreFoundation 0x00000001a5d831f0 0x1a5cdd000 + 680432
5 Foundation 0x00000001a6779494 0x1a6771000 + 33940
6 Foundation 0x00000001a6779304 0x1a6771000 + 33540
7 UIKitCore 0x00000001d2e010c4 0x1d2428000 + 10326212
8 Foundation 0x00000001a68ac23c 0x1a6771000 + 1290812
9 libsystem_pthread.dylib 0x00000001a5a1425c 0x1a5a09000 + 45660
10 libsystem_pthread.dylib 0x00000001a5a141bc 0x1a5a09000 + 45500
11 libsystem_pthread.dylib 0x00000001a5a17cf4 0x1a5a09000 + 60660

Thread 6:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 7:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 8 name: com.facebook.react.JavaScript
Thread 8:
0 JavaScriptCore 0x00000001ad0ff7fc 0x1ad0e0000 + 129020
1 JavaScriptCore 0x00000001ad869750 0x1ad0e0000 + 7903056
2 JavaScriptCore 0x00000001ad8ad988 0x1ad0e0000 + 8182152
3 JavaScriptCore 0x00000001ad8df8b0 0x1ad0e0000 + 8386736
4 JavaScriptCore 0x00000001ad8b38a8 0x1ad0e0000 + 8206504
5 JavaScriptCore 0x00000001ad8afec8 0x1ad0e0000 + 8191688
6 JavaScriptCore 0x00000001ad8df8b0 0x1ad0e0000 + 8386736
7 JavaScriptCore 0x00000001ad8b3a64 0x1ad0e0000 + 8206948
8 JavaScriptCore 0x00000001ad8f1dc4 0x1ad0e0000 + 8461764
9 JavaScriptCore 0x00000001ad8eca14 0x1ad0e0000 + 8440340
10 JavaScriptCore 0x00000001ad8e7848 0x1ad0e0000 + 8419400
11 JavaScriptCore 0x00000001ad8960a0 0x1ad0e0000 + 8085664
12 JavaScriptCore 0x00000001ad8ed080 0x1ad0e0000 + 8441984
13 JavaScriptCore 0x00000001ad8ec964 0x1ad0e0000 + 8440164
14 JavaScriptCore 0x00000001ad8e7848 0x1ad0e0000 + 8419400
15 JavaScriptCore 0x00000001ad895da0 0x1ad0e0000 + 8084896
16 JavaScriptCore 0x00000001ad892750 0x1ad0e0000 + 8070992
17 JavaScriptCore 0x00000001ad32bee0 0x1ad0e0000 + 2408160
18 JavaScriptCore 0x00000001ad32ba60 0x1ad0e0000 + 2407008
19 JavaScriptCore 0x00000001ad32b150 0x1ad0e0000 + 2404688
20 JavaScriptCore 0x00000001adadbec8 0x1ad0e0000 + 10469064
21 JavaScriptCore 0x00000001adadcf58 0x1ad0e0000 + 10473304
22 JavaScriptCore 0x00000001ad854fb8 0x1ad0e0000 + 7819192
23 JavaScriptCore 0x00000001ad149a08 0x1ad0e0000 + 432648
24 JavaScriptCore 0x00000001ad1499b4 0x1ad0e0000 + 432564
25 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
26 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
27 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
28 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
29 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
30 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
31 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
32 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
33 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
34 JavaScriptCore 0x00000001ad1499b4 0x1ad0e0000 + 432564
35 JavaScriptCore 0x00000001ad149dc8 0x1ad0e0000 + 433608
36 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
37 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
38 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
39 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
40 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
41 JavaScriptCore 0x00000001ad1499b4 0x1ad0e0000 + 432564
42 JavaScriptCore 0x00000001ad149a1c 0x1ad0e0000 + 432668
43 JavaScriptCore 0x00000001ad1422e4 0x1ad0e0000 + 402148
44 JavaScriptCore 0x00000001ad7b01c8 0x1ad0e0000 + 7143880
45 JavaScriptCore 0x00000001ad98bd64 0x1ad0e0000 + 9092452
46 JavaScriptCore 0x00000001ad16af44 0x1ad0e0000 + 569156
47 Sa 0x00000001046079ac 0x104428000 + 1964460
48 S 0x0000000104623584 0x104428000 + 2078084
49 S 0x0000000104629180 0x104428000 + 2101632
50 S 0x000000010462333c 0x104428000 + 2077500
51 S 0x00000001045b2a54 0x104428000 + 1616468
52 S 0x00000001045ab7b4 0x104428000 + 1587124
53 CoreFoundation 0x00000001a5d89040 0x1a5cdd000 + 704576
54 CoreFoundation 0x00000001a5d88940 0x1a5cdd000 + 702784
55 CoreFoundation 0x00000001a5d83e58 0x1a5cdd000 + 683608
56 CoreFoundation 0x00000001a5d831f0 0x1a5cdd000 + 680432
57 0x000000010458d68c 0x104428000 + 1463948
58 Foundation 0x00000001a68ac23c 0x1a6771000 + 1290812
59 libsystem_pthread.dylib 0x00000001a5a1425c 0x1a5a09000 + 45660
60 libsystem_pthread.dylib 0x00000001a5a141bc 0x1a5a09000 + 45500
61 libsystem_pthread.dylib 0x00000001a5a17cf4 0x1a5a09000 + 60660

Thread 9 name: JavaScriptCore bmalloc scavenger
Thread 9:
0 libsystem_kernel.dylib 0x00000001a598ef0c 0x1a596c000 + 143116
1 libsystem_pthread.dylib 0x00000001a5a0cc88 0x1a5a09000 + 15496
2 libc++.1.dylib 0x00000001a4f5c568 0x1a4f54000 + 34152
3 JavaScriptCore 0x00000001ad141c68 0x1ad0e0000 + 400488
4 JavaScriptCore 0x00000001ad141b18 0x1ad0e0000 + 400152
5 JavaScriptCore 0x00000001ad1407b4 0x1ad0e0000 + 395188
6 JavaScriptCore 0x00000001ad13fe70 0x1ad0e0000 + 392816
7 JavaScriptCore 0x00000001ad14191c 0x1ad0e0000 + 399644
8 libsystem_pthread.dylib 0x00000001a5a1425c 0x1a5a09000 + 45660
9 libsystem_pthread.dylib 0x00000001a5a141bc 0x1a5a09000 + 45500
10 libsystem_pthread.dylib 0x00000001a5a17cf4 0x1a5a09000 + 60660

Thread 10 name: WebThread
Thread 10:
0 libsystem_kernel.dylib 0x00000001a5983ea4 0x1a596c000 + 97956
1 libsystem_kernel.dylib 0x00000001a598337c 0x1a596c000 + 95100
2 CoreFoundation 0x00000001a5d88be8 0x1a5cdd000 + 703464
3 CoreFoundation 0x00000001a5d83a84 0x1a5cdd000 + 682628
4 CoreFoundation 0x00000001a5d831f0 0x1a5cdd000 + 680432
5 WebCore 0x00000001aebf43e8 0x1ae744000 + 4916200
6 libsystem_pthread.dylib 0x00000001a5a1425c 0x1a5a09000 + 45660
7 libsystem_pthread.dylib 0x00000001a5a141bc 0x1a5a09000 + 45500
8 libsystem_pthread.dylib 0x00000001a5a17cf4 0x1a5a09000 + 60660

Thread 11:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 12:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 13:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 14:
0 libsystem_pthread.dylib 0x00000001a5a17ce8 0x1a5a09000 + 60648

Thread 15 name: com.apple.NSURLConnectionLoader
Thread 15:
0 libsystem_kernel.dylib 0x00000001a5983ea4 0x1a596c000 + 97956
1 libsystem_kernel.dylib 0x00000001a598337c 0x1a596c000 + 95100
2 CoreFoundation 0x00000001a5d88be8 0x1a5cdd000 + 703464
3 CoreFoundation 0x00000001a5d83a84 0x1a5cdd000 + 682628
4 CoreFoundation 0x00000001a5d831f0 0x1a5cdd000 + 680432
5 CFNetwork 0x00000001a63a600c 0x1a63a4000 + 8204
6 Foundation 0x00000001a68ac23c 0x1a6771000 + 1290812
7 libsystem_pthread.dylib 0x00000001a5a1425c 0x1a5a09000 + 45660
8 libsystem_pthread.dylib 0x00000001a5a141bc 0x1a5a09000 + 45500
9 libsystem_pthread.dylib 0x00000001a5a17cf4 0x1a5a09000 + 60660

Thread 16 name: WTF::AutomaticThread
Thread 16:
0 libsystem_kernel.dylib 0x00000001a598ef0c 0x1a596c000 + 143116
1 libsystem_pthread.dylib 0x00000001a5a0cc88 0x1a5a09000 + 15496
2 JavaScriptCore 0x00000001ad12a7d8 0x1ad0e0000 + 305112
3 JavaScriptCore 0x00000001ad1119a0 0x1ad0e0000 + 203168
4 JavaScriptCore 0x00000001ad0eb2e4 0x1ad0e0000 + 45796
5 JavaScriptCore 0x00000001ad0eb684 0x1ad0e0000 + 46724
6 JavaScriptCore 0x00000001ad1289f0 0x1ad0e0000 + 297456
7 JavaScriptCore 0x00000001ad129f58 0x1ad0e0000 + 302936
8 libsystem_pthread.dylib 0x00000001a5a1425c 0x1a5a09000 + 45660
9 libsystem_pthread.dylib 0x00000001a5a141bc 0x1a5a09000 + 45500
10 libsystem_pthread.dylib 0x00000001a5a17cf4 0x1a5a09000 + 60660

Thread 1 crashed with ARM Thread State (64-bit):
x0: 0x0000000000000000 x1: 0x0000000000000000 x2: 0x0000000000000000 x3: 0x00000002802396b7
x4: 0x00000001a4fc0b81 x5: 0x000000016ba5e030 x6: 0x000000000000006e x7: 0xffffffffffffffec
x8: 0x0000000000000c00 x9: 0x00000001a5a0f820 x10: 0x00000001a5a0aea4 x11: 0x0000000000000003
x12: 0x000000000000002d x13: 0x0000000000000000 x14: 0x0000000000000010 x15: 0x0000000000000002
x16: 0x0000000000000148 x17: 0x0000000000000000 x18: 0x0000000000000000 x19: 0x0000000000000006
x20: 0x000000016ba5f000 x21: 0x000000016ba5e030 x22: 0x0000000000001003 x23: 0x000000016ba5f0e0
x24: 0x000000028396fd80 x25: 0x0000000000000000 x26: 0x0000000000000000 x27: 0x0000000000000000
x28: 0x000000016ba5f0e0 fp: 0x000000016ba5df90 lr: 0x00000001a5a0b020
sp: 0x000000016ba5df60 pc: 0x00000001a598f104 cpsr: 0x00000000

Binary Images:
0x104428000 - 0x104863fff arm64 <4e95b3550de83ae39d03dcdd635b9877> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/a.app/
0x104a04000 - 0x104a37fff BleClientManager arm64 <7e29de11f2833a3887cbd8b260f1f50f> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/S.app/Frameworks/BleClientManager.framework/BleClientManager
0x104a48000 - 0x104a4ffff libswiftCoreFoundation.dylib arm64 /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/.app/Frameworks/libswiftCoreFoundation.dylib
0x104a64000 - 0x104aaffff RxBluetoothKit arm64 <4689bf2764773f60b6f7762c1b93722d> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/S.app/Frameworks/RxBluetoothKit.framework/RxBluetoothKit
0x104acc000 - 0x104adbfff libswiftCoreGraphics.dylib arm64 /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sa.app/Frameworks/libswiftCoreGraphics.dylib
0x104aec000 - 0x104af3fff libswiftCoreImage.dylib arm64 <5566b2c4f8ed3f598b9355ea7034e88c> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sa.app/Frameworks/libswiftCoreImage.dylib
0x104afc000 - 0x104b07fff libswiftDarwin.dylib arm64 <3ad46a009ec030a78b62118ac7437c16> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sh.app/Frameworks/libswiftDarwin.dylib
0x104b14000 - 0x104b1bfff libswiftMetal.dylib arm64 /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Shapa.app/Frameworks/libswiftMetal.dylib
0x104b28000 - 0x104b8bfff dyld arm64 <67179aea6d8038a58f729b468f24ca69> /usr/lib/dyld
0x104bf8000 - 0x104cb7fff RxSwift arm64 <69f85360cb173832a92fa6a666819a7a> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sha.app/Frameworks/RxSwift.framework/RxSwift
0x104d08000 - 0x10503ffff libswiftCore.dylib arm64 <6cd15feecd403bee89fa58ad69473426> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sa.app/Frameworks/libswiftCore.dylib
0x105114000 - 0x10512ffff libswiftDispatch.dylib arm64 /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sa.app/Frameworks/libswiftDispatch.dylib
0x105148000 - 0x105297fff libswiftFoundation.dylib arm64 <164069033f243b4a9283a3119938293e> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sa.app/Frameworks/libswiftFoundation.dylib
0x105310000 - 0x105317fff libswiftObjectiveC.dylib arm64 <8a5f7591072c387aaa93a8365f0b70aa> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sha.app/Frameworks/libswiftObjectiveC.dylib
0x105320000 - 0x105327fff libswiftQuartzCore.dylib arm64 <0a3bbebf7b28365aa6813aacf52e5ffd> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Spa.app/Frameworks/libswiftQuartzCore.dylib
0x105330000 - 0x10533ffff libswiftUIKit.dylib arm64 <491ade7e8acd3fb18a25c472c2a39577> /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Sha.app/Frameworks/libswiftUIKit.dylib
0x105350000 - 0x105357fff libswiftos.dylib arm64 /var/containers/Bundle/Application/9BA433B0-73C8-4F33-BC76-26F47A9B16FC/Spa.app/Frameworks/libswiftos.dylib
0x105680000 - 0x10568bfff libobjc-trampolines.dylib arm64 <0d67ef7e3ec8370aa106a59717eb17fa> /usr/lib/libobjc-trampolines.dylib
0x1a4f52000 - 0x1a4f53fff libSystem.B.dylib arm64 /usr/lib/libSystem.B.dylib
0x1a4f54000 - 0x1a4faefff libc++.1.dylib arm64 /usr/lib/libc++.1.dylib
0x1a4faf000 - 0x1a4fc2fff libc++abi.dylib arm64 /usr/lib/libc++abi.dylib
0x1a4fc3000 - 0x1a574bfff libobjc.A.dylib arm64 <3c1dc6c93e273dd3938e146c18cc5188> /usr/lib/libobjc.A.dylib
0x1a574c000 - 0x1a5751fff libcache.dylib arm64 /usr/lib/system/libcache.dylib
0x1a5752000 - 0x1a575efff libcommonCrypto.dylib arm64 /usr/lib/system/libcommonCrypto.dylib
0x1a575f000 - 0x1a5763fff libcompiler_rt.dylib arm64 /usr/lib/system/libcompiler_rt.dylib
0x1a5764000 - 0x1a576cfff libcopyfile.dylib arm64 /usr/lib/system/libcopyfile.dylib
0x1a576d000 - 0x1a57d0fff libcorecrypto.dylib arm64 /usr/lib/system/libcorecrypto.dylib
0x1a57d1000 - 0x1a5841fff libdispatch.dylib arm64 <025080cbcf933d2f81c1b2e0b82a362d> /usr/lib/system/libdispatch.dylib
0x1a5842000 - 0x1a586cfff libdyld.dylib arm64 /usr/lib/system/libdyld.dylib
0x1a586d000 - 0x1a586dfff liblaunch.dylib arm64 <5fb8b0437013319887b994a645c87bee> /usr/lib/system/liblaunch.dylib
0x1a586e000 - 0x1a5873fff libmacho.dylib arm64 <16c0dcb8fe293859b948a16894dc8161> /usr/lib/system/libmacho.dylib
0x1a5874000 - 0x1a5875fff libremovefile.dylib arm64 /usr/lib/system/libremovefile.dylib
0x1a5876000 - 0x1a588dfff libsystem_asl.dylib arm64 /usr/lib/system/libsystem_asl.dylib
0x1a588e000 - 0x1a588efff libsystem_blocks.dylib arm64 <068a78ad98aa353e956eeaf058fd9637> /usr/lib/system/libsystem_blocks.dylib
0x1a588f000 - 0x1a590dfff libsystem_c.dylib arm64 <7da5f27d7b4830dda0a4dd26c109e448> /usr/lib/system/libsystem_c.dylib
0x1a590e000 - 0x1a5912fff libsystem_configuration.dylib arm64 <25383d775a2136589984adc6c9b35309> /usr/lib/system/libsystem_configuration.dylib
0x1a5913000 - 0x1a591afff libsystem_containermanager.dylib arm64 <3dcd9a50bfdf3c1191f4e90691f4d5e8> /usr/lib/system/libsystem_containermanager.dylib
0x1a591b000 - 0x1a591cfff libsystem_coreservices.dylib arm64 /usr/lib/system/libsystem_coreservices.dylib
0x1a591d000 - 0x1a5923fff libsystem_darwin.dylib arm64 <1b7bfac5248e36ef923f46597ca358d1> /usr/lib/system/libsystem_darwin.dylib
0x1a5924000 - 0x1a592afff libsystem_dnssd.dylib arm64 <0fb34f5c3eb93adb83a4b74f452dafb2> /usr/lib/system/libsystem_dnssd.dylib
0x1a592b000 - 0x1a596bfff libsystem_info.dylib arm64 /usr/lib/system/libsystem_info.dylib
0x1a596c000 - 0x1a5996fff libsystem_kernel.dylib arm64 <3ab723d26da43120b5fc292ff2dc4c84> /usr/lib/system/libsystem_kernel.dylib
0x1a5997000 - 0x1a59c4fff libsystem_m.dylib arm64 <12380e91ac4437a69be12482c0a6e10a> /usr/lib/system/libsystem_m.dylib
0x1a59c5000 - 0x1a59e8fff libsystem_malloc.dylib arm64 /usr/lib/system/libsystem_malloc.dylib
0x1a59e9000 - 0x1a59f5fff libsystem_networkextension.dylib arm64 <472dd253009d3bb4b597d51e461a34db> /usr/lib/system/libsystem_networkextension.dylib
0x1a59f6000 - 0x1a59fdfff libsystem_notify.dylib arm64 /usr/lib/system/libsystem_notify.dylib
0x1a59fe000 - 0x1a5a08fff libsystem_platform.dylib arm64 <368fd1a9ce9937a4bde2354a5c5d4804> /usr/lib/system/libsystem_platform.dylib
0x1a5a09000 - 0x1a5a19fff libsystem_pthread.dylib arm64 /usr/lib/system/libsystem_pthread.dylib
0x1a5a1a000 - 0x1a5a1cfff libsystem_sandbox.dylib arm64 /usr/lib/system/libsystem_sandbox.dylib
0x1a5a1d000 - 0x1a5a24fff libsystem_symptoms.dylib arm64 /usr/lib/system/libsystem_symptoms.dylib
0x1a5a25000 - 0x1a5a3afff libsystem_trace.dylib arm64 <6c1526cb161d302e887f8dc30ce3b5f9> /usr/lib/system/libsystem_trace.dylib
0x1a5a3b000 - 0x1a5a40fff libunwind.dylib arm64 /usr/lib/system/libunwind.dylib
0x1a5a41000 - 0x1a5a6ffff libxpc.dylib arm64 <8c926c76a52a323ab048ab447b34a334> /usr/lib/system/libxpc.dylib
0x1a5a70000 - 0x1a5ccafff libicucore.A.dylib arm64 <4bc5287e088f30f882bc6999a90feacc> /usr/lib/libicucore.A.dylib
0x1a5ccb000 - 0x1a5cdcfff libz.1.dylib arm64 <788ab2a7d56e3b528034d5a9b9f9d3f6> /usr/lib/libz.1.dylib
0x1a5cdd000 - 0x1a6040fff CoreFoundation arm64 /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1a6041000 - 0x1a6051fff libbsm.0.dylib arm64 /usr/lib/libbsm.0.dylib
0x1a6052000 - 0x1a6052fff libenergytrace.dylib arm64 <9c3edae00ffc357dbba7b7f6a4820fcc> /usr/lib/libenergytrace.dylib
0x1a6053000 - 0x1a60e3fff IOKit arm64 /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1a60e4000 - 0x1a61ccfff libxml2.2.dylib arm64 <4c3f394b5a9334589d60dbff79c6a0f7> /usr/lib/libxml2.2.dylib
0x1a61cd000 - 0x1a61dafff libbz2.1.0.dylib arm64 <273cbb660f5f397eab26a425e8a657b7> /usr/lib/libbz2.1.0.dylib
0x1a61db000 - 0x1a61f3fff liblzma.5.dylib arm64 <75e94b185f193af9a2c87ec2f7e0ac46> /usr/lib/liblzma.5.dylib
0x1a61f4000 - 0x1a636dfff libsqlite3.dylib arm64 /usr/lib/libsqlite3.dylib
0x1a636e000 - 0x1a63a3fff libMobileGestalt.dylib arm64 /usr/lib/libMobileGestalt.dylib
0x1a63a4000 - 0x1a6770fff CFNetwork arm64 /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x1a6771000 - 0x1a6a7dfff Foundation arm64 /System/Library/Frameworks/Foundation.framework/Foundation
0x1a6a7e000 - 0x1a6b8afff Security arm64 /System/Library/Frameworks/Security.framework/Security
0x1a6b8b000 - 0x1a6bf9fff SystemConfiguration arm64 <85514a7674383f6485ac7750a41894bd> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x1a6bfa000 - 0x1a6c2ffff libCRFSuite.dylib arm64 <3160a917a42d35a3a30e8c6d922070c6> /usr/lib/libCRFSuite.dylib
0x1a6c30000 - 0x1a6c46fff libapple_nghttp2.dylib arm64 /usr/lib/libapple_nghttp2.dylib
0x1a6c47000 - 0x1a6c70fff libarchive.2.dylib arm64 <53722536e2ab33e992347c4afb90ef97> /usr/lib/libarchive.2.dylib
0x1a6c71000 - 0x1a6d3ffff libboringssl.dylib arm64 <68f7323d11ff3c80a1de2e5dc6518771> /usr/lib/libboringssl.dylib
0x1a6d40000 - 0x1a6d56fff libcoretls.dylib arm64 <97b6385a40853340b39fca181b1a24d1> /usr/lib/libcoretls.dylib
0x1a6d57000 - 0x1a6d58fff libcoretls_cfhelpers.dylib arm64 /usr/lib/libcoretls_cfhelpers.dylib
0x1a6d59000 - 0x1a6d5afff liblangid.dylib arm64 <984ab4017cce3def839d7da2555c98f4> /usr/lib/liblangid.dylib
0x1a6d5b000 - 0x1a70d0fff libnetwork.dylib arm64 /usr/lib/libnetwork.dylib
0x1a70d1000 - 0x1a7106fff libpcap.A.dylib arm64 <1e723fd7ee7133259e72aa46992693ab> /usr/lib/libpcap.A.dylib
0x1a7107000 - 0x1a7164fff libusrtcp.dylib arm64 <7f312ea426753ff0943fac305311baf0> /usr/lib/libusrtcp.dylib
0x1a7165000 - 0x1a7171fff IOSurface arm64 /System/Library/Frameworks/IOSurface.framework/IOSurface
0x1a7172000 - 0x1a7225fff libBLAS.dylib arm64 <422303ea936b30c4a3a204c5042a4019> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x1a7226000 - 0x1a7545fff libLAPACK.dylib arm64 <81d6d8a0ea4933488a6706fda9653f13> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1a7546000 - 0x1a77b8fff vImage arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x1a77b9000 - 0x1a77cafff libSparseBLAS.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1a77cb000 - 0x1a7827fff libvMisc.dylib arm64 <64fed501f334318cae6d4e4387a47be3> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1a7828000 - 0x1a7857fff libBNNS.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x1a7858000 - 0x1a786cfff libLinearAlgebra.dylib arm64 <9febf91b130b37d9afc9a8d7be78f271> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1a786d000 - 0x1a7871fff libQuadrature.dylib arm64 <5e86d436c08e391e84b3ba27ebb0fb79> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1a7872000 - 0x1a78e2fff libSparse.dylib arm64 /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x1a78e3000 - 0x1a7971fff libvDSP.dylib arm64 <707871f1ca7a343b9937a3f8ccb79592> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1a7972000 - 0x1a7972fff vecLib arm64 <0041874ce19f3d47906b23024b685abf> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1a7973000 - 0x1a7973fff Accelerate arm64 <94e84f08c2af3ed2994bca4a3f71bd47> /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1a7974000 - 0x1a798cfff libcompression.dylib arm64 <52cfe534518a3352a563755c00536d36> /usr/lib/libcompression.dylib
0x1a798d000 - 0x1a7f3bfff CoreGraphics arm64 <71f35861779e33dc85becdcb3c50e7ad> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1a7f3c000 - 0x1a7f41fff IOAccelerator arm64 <8b179d4801dc3c358ca2f080a9dd12f9> /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1a7f42000 - 0x1a7f47fff libCoreFSCache.dylib arm64 <86bf2e4231f7365e919e32aeee0ca186> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1a7f48000 - 0x1a7ff0fff Metal arm64 /System/Library/Frameworks/Metal.framework/Metal
0x1a7ff1000 - 0x1a8004fff GraphicsServices arm64 <0d63a05d8c803e93b5fe8a52208271b4> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x1a8005000 - 0x1a8005fff MobileCoreServices arm64 /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1a8006000 - 0x1a8008fff IOSurfaceAccelerator arm64 /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x1a8009000 - 0x1a804bfff AppleJPEG arm64 <18955d5987183a68adff153ecba46736> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1a804c000 - 0x1a8611fff ImageIO arm64 <994242d700dc3f7db5ca48a485a01020> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x1a8612000 - 0x1a8684fff BaseBoard arm64 /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x1a8685000 - 0x1a869cfff AssertionServices arm64 <6a23fd7c0b2e323187a027271ab430e4> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x1a869d000 - 0x1a86a5fff CorePhoneNumbers arm64 <8b18291423fb32d0b30bb7a9f2aa5655> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x1a86a6000 - 0x1a86ebfff AppSupport arm64 <18872c192de23d29a024492143e090f5> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1a86ec000 - 0x1a8705fff CrashReporterSupport arm64 /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x1a8706000 - 0x1a870bfff AggregateDictionary arm64 <399b625c2ed6303fbd987f78ffd56539> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x1a870c000 - 0x1a8794fff libTelephonyUtilDynamic.dylib arm64 <95c20504af503f21a28ad6ccb84a4d19> /usr/lib/libTelephonyUtilDynamic.dylib
0x1a8795000 - 0x1a87b4fff ProtocolBuffer arm64 /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x1a87b5000 - 0x1a87e5fff MobileKeyBag arm64 <68a9efcb67223020a5d2b87b326b565c> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x1a87e6000 - 0x1a8822fff BackBoardServices arm64 <05ba119e36e33e678acba4bd7f27de47> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x1a8823000 - 0x1a888cfff FrontBoardServices arm64 /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x1a888d000 - 0x1a88d4fff SpringBoardServices arm64 <39ff285a5a08300581df78d39839e43f> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x1a88d5000 - 0x1a88e8fff PowerLog arm64 /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x1a88e9000 - 0x1a8904fff CommonUtilities arm64 <1f7eb175f249371692b1d1d229873ae1> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x1a8905000 - 0x1a8910fff liblockdown.dylib arm64 /usr/lib/liblockdown.dylib
0x1a8911000 - 0x1a8c4ffff CoreData arm64 <2332c30861283595ad5394a1f08be532> /System/Library/Frameworks/CoreData.framework/CoreData
0x1a8c50000 - 0x1a8c57fff TCC arm64 /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1a8c58000 - 0x1a8c60fff libcupolicy.dylib arm64 <130f161faa6b3ec0a7c4dcf1eed866f9> /usr/lib/libcupolicy.dylib
0x1a8c61000 - 0x1a8d46fff CoreTelephony arm64 <93355f632f593f5281865c969aac485d> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1a8d47000 - 0x1a8da8fff Accounts arm64 <968701d6f1a53f1cbb1c943c7989bb04> /System/Library/Frameworks/Accounts.framework/Accounts
0x1a8da9000 - 0x1a8dd2fff AppleSauce arm64 /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1a8dd3000 - 0x1a8ddcfff DataMigration arm64 /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x1a8ddd000 - 0x1a8de4fff Netrb arm64 /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x1a8de5000 - 0x1a8e19fff PersistentConnection arm64 /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x1a8e1a000 - 0x1a8e2bfff libmis.dylib arm64 <8bd05aae163c357493b14fa4bce90aa7> /usr/lib/libmis.dylib
0x1a8e2c000 - 0x1a8f35fff ManagedConfiguration arm64 <30a80be382bb31e7af162c281e48c400> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1a8f36000 - 0x1a8f3bfff libReverseProxyDevice.dylib arm64 <9f47b0cedcfd3f75b4ee0e545ddee3f3> /usr/lib/libReverseProxyDevice.dylib
0x1a8f3c000 - 0x1a8f4efff libamsupport.dylib arm64 <4d654aed059e377bbf718221cfbc1c28> /usr/lib/libamsupport.dylib
0x1a8f4f000 - 0x1a8f54fff libCoreVMClient.dylib arm64 <44e914213c323fbba6145cda4fd10a6e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1a8f55000 - 0x1a8f56fff libCVMSPluginSupport.dylib arm64 /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1a8f57000 - 0x1a8f5afff libutil.dylib arm64 <4eaf33b8988039f795ae66f03a01e3ac> /usr/lib/libutil.dylib
0x1a8f5b000 - 0x1a8f9afff libGLImage.dylib arm64 <9d403b15ee8c3339ae472ceb4f3609f2> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1a8f9b000 - 0x1a9012fff APFS arm64 /System/Library/PrivateFrameworks/APFS.framework/APFS
0x1a9013000 - 0x1a9044fff MediaKit arm64 <384d64739049326784c770ffb215e963> /System/Library/PrivateFrameworks/MediaKit.framework/MediaKit
0x1a9045000 - 0x1a9061fff libSERestoreInfo.dylib arm64 <4c21f0cba4df3176b36dae70f2298ca2> /usr/lib/updaters/libSERestoreInfo.dylib
0x1a9068000 - 0x1a90a4fff DiskImages arm64 /System/Library/PrivateFrameworks/DiskImages.framework/DiskImages
0x1a90a5000 - 0x1a90aefff libGFXShared.dylib arm64 <50fe12ebf4ff3e4fa81337c2f86c4830> /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x1a90af000 - 0x1a90fdfff libauthinstall.dylib arm64 <2214c7596ded3935bd19f281af2afb77> /usr/lib/libauthinstall.dylib
0x1a90fe000 - 0x1a9106fff IOMobileFramebuffer arm64 <7e0cb324f630364abf441ba9dc82297a> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x1a9107000 - 0x1a9112fff OpenGLES arm64 <15496bbdb29e3e0c8c4fc1dd1f98fa08> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x1a9113000 - 0x1a91b0fff ColorSync arm64 <52c4256ba91d3636aded4b2254e82903> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x1a91b1000 - 0x1a91e0fff CoreVideo arm64 <317da5b683d13593be36750e39a8d53d> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x1a91e1000 - 0x1a91e2fff libCTGreenTeaLogger.dylib arm64 <76e8b109bac13330820949a528965882> /usr/lib/libCTGreenTeaLogger.dylib
0x1a91e3000 - 0x1a9352fff CoreAudio arm64 <2844977772f930058ef9314a9b400ee7> /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1a9353000 - 0x1a9375fff CoreAnalytics arm64 <359d4a89acb83886bfe06910dbc63885> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x1a9376000 - 0x1a9379fff UserFS arm64 <380267d724e7332a8e3a07c2fe1a552e> /System/Library/PrivateFrameworks/UserFS.framework/UserFS
0x1a937a000 - 0x1a9517fff CoreMedia arm64 <276c2955623f3dd69526fa59cdb2c16c> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x1a9518000 - 0x1a952afff libprotobuf-lite.dylib arm64 /usr/lib/libprotobuf-lite.dylib
0x1a952b000 - 0x1a9590fff libprotobuf.dylib arm64 <29eb153d4e49305da00845942dc1ce90> /usr/lib/libprotobuf.dylib
0x1a9591000 - 0x1a98a7fff libAWDSupportFramework.dylib arm64 <4f99fd19a6a439f399a8888629347c9f> /usr/lib/libAWDSupportFramework.dylib
0x1a98a8000 - 0x1a98f2fff WirelessDiagnostics arm64 <316e8098fc0030b3b87909e3b55ebd90> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x1a98f3000 - 0x1a99b3fff VideoToolbox arm64 <0a749e2a0e28386e9ffbfb727915ab16> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x1a99b4000 - 0x1a9abffff libFontParser.dylib arm64 <7dd118d3800c31f5a3f01b8c93318685> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x1a9ac0000 - 0x1a9ac0fff FontServices arm64 <6b7868d8151131459597cf1d80c044c9> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x1a9ac1000 - 0x1a9c22fff CoreText arm64 /System/Library/Frameworks/CoreText.framework/CoreText
0x1a9c23000 - 0x1a9c32fff IntlPreferences arm64 <8d608ca85cd23d1b8f6055ffec3d6be9> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x1a9c33000 - 0x1a9c3dfff RTCReporting arm64 <7377e0cceeec35a99d5f419abb175808> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1a9c3e000 - 0x1a9cb6fff CoreBrightness arm64 <574ba7a774fa304787ecbab2d5cfc563> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x1a9cb7000 - 0x1a9cc1fff libAudioStatistics.dylib arm64 <611ea247048d3d789a99cbaf8dcd1c26> /usr/lib/libAudioStatistics.dylib
0x1a9cc2000 - 0x1aa2b4fff AudioToolbox arm64 /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x1aa2b5000 - 0x1aa4f2fff QuartzCore arm64 /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x1aa4f3000 - 0x1aa4fefff MediaAccessibility arm64 <40e2b21f769735d9a80564244056008d> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1aa4ff000 - 0x1aa5f1fff libiconv.2.dylib arm64 <506e2bfca9c334d0a02a0bb44e669025> /usr/lib/libiconv.2.dylib
0x1aa5f2000 - 0x1aa60dfff NetworkStatistics arm64 <7fb3bc1fa5713d2eb99dad2ca782067c> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x1aa60e000 - 0x1aa62cfff MPSCore arm64 <6436293106bb381184af63f069f2fb16> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1aa62d000 - 0x1aa6a1fff MPSImage arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1aa6a2000 - 0x1aa6c6fff MPSMatrix arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1aa6c7000 - 0x1aa6d5fff CoreAUC arm64 /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1aa6d6000 - 0x1aad73fff MediaToolbox arm64 <8e776fd1ab06334a9d66fb55037997a4> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x1aad74000 - 0x1aaee6fff MPSNeuralNetwork arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1aaee7000 - 0x1aaee7fff MetalPerformanceShaders arm64 <64e2ac7df1b039b48eda0ed63fa73aeb> /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1aaee8000 - 0x1ab305fff FaceCore arm64 <9a7b26e3fa6d3b0d8be59b0a0e3c246e> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1ab306000 - 0x1ab313fff GraphVisualizer arm64 /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1ab314000 - 0x1ab4bbfff libFosl_dynamic.dylib arm64 /usr/lib/libFosl_dynamic.dylib
0x1ab4bc000 - 0x1ab75cfff CoreImage arm64 <65d53fa038213884a6a4582fb4d77e58> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x1ab75d000 - 0x1ab999fff CoreMotion arm64 <5a0557290b5b39fe89e3b88c33f131c3> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x1ab99a000 - 0x1ab9cafff CoreBluetooth arm64 <437704fa00283c8884f0b8bae30fd287> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x1ab9cb000 - 0x1ab9eefff PlugInKit arm64 <180d62e5afbc3e2383eda14aa96129a7> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x1ab9ef000 - 0x1abc7cfff Celestial arm64 /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1abc7d000 - 0x1abd07fff Quagga arm64 /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1abd08000 - 0x1abe0cfff AVFAudio arm64 <37dabcd7ff7e3b72bf0baed07751bbc5> /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x1abe0d000 - 0x1ac01ffff AVFoundation arm64 /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x1ac020000 - 0x1ac040fff CacheDelete arm64 /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x1ac041000 - 0x1ac07dfff StreamingZip arm64 /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x1ac07e000 - 0x1ac092fff CoreEmoji arm64 <1aa1d71a2a0d3369b9b893e9f07bc319> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1ac093000 - 0x1ac0e2fff CoreLocationProtobuf arm64 /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1ac0e3000 - 0x1ac0ebfff SymptomDiagnosticReporter arm64 <2d5007879a3d36499a06706913efb88e> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x1ac0ec000 - 0x1acb08fff GeoServices arm64 <7ca293994de43129b1dc2fe302a6f70c> /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1acb09000 - 0x1acb23fff MobileAsset arm64 <5f5a593a0d7633ff95e85ab77885b485> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x1acb24000 - 0x1acb64fff Lexicon arm64 <07230f4f74ae38ad9f795eb0ea837228> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x1acb65000 - 0x1acb76fff libcmph.dylib arm64 <4e381f1b9feb336baf98e9c4421949b5> /usr/lib/libcmph.dylib
0x1acb77000 - 0x1acc9dfff LanguageModeling arm64 /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x1accb6000 - 0x1acd5afff CoreLocation arm64 /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x1acd5b000 - 0x1acd5bfff PhoneNumbers arm64 <1e61802a950d335b80adf66cd9b68727> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1acd5c000 - 0x1acd67fff libChineseTokenizer.dylib arm64 <49ae296e32b83e4296caf5874e7f40eb> /usr/lib/libChineseTokenizer.dylib
0x1acd68000 - 0x1ace24fff libmecab_em.dylib arm64 /usr/lib/libmecab_em.dylib
0x1ace25000 - 0x1ace26fff libThaiTokenizer.dylib arm64 <007bbafe33f836369f656ba07ae69892> /usr/lib/libThaiTokenizer.dylib
0x1ace27000 - 0x1ace2bfff libgermantok.dylib arm64 <0b300a5faf0b346393b16f95b4db96db> /usr/lib/libgermantok.dylib
0x1ace38000 - 0x1acea5fff CoreNLP arm64 <1442cb6146ae3065b32677fcd8f1459c> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x1acea6000 - 0x1ad078fff MobileSpotlightIndex arm64 <55892aecfd10348e9817927065f450cd> /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1ad079000 - 0x1ad0dffff CoreSpotlight arm64 /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x1ad0e0000 - 0x1adcb5fff JavaScriptCore arm64 /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x1adcb6000 - 0x1adcbbfff libheimdal-asn1.dylib arm64 /usr/lib/libheimdal-asn1.dylib
0x1adcbc000 - 0x1add36fff libate.dylib arm64 <616bc97e229e3819bdc06670f01a3eb7> /usr/lib/libate.dylib
0x1add37000 - 0x1adde0fff TextureIO arm64 /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1adde1000 - 0x1adea5fff CoreUI arm64 <8cdda2b50f27368e87bcc448107e99b5> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x1adea6000 - 0x1adeb3fff MobileIcons arm64 /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x1adeb4000 - 0x1adec3fff AppleFSCompression arm64 /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1adec4000 - 0x1adf2cfff TextInput arm64 /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x1adf2d000 - 0x1adf56fff libxslt.1.dylib arm64 <80d970d0e60b38c1b515098216131b06> /usr/lib/libxslt.1.dylib
0x1adf57000 - 0x1adf8cfff DataDetectorsCore arm64 /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x1adf8d000 - 0x1ae028fff FileProvider arm64 <2db6a075d5e8386d9cbbd06286aa4000> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x1ae029000 - 0x1ae140fff NLP arm64 /System/Library/PrivateFrameworks/NLP.framework/NLP
0x1ae141000 - 0x1ae218fff ProofReader arm64 <4bd9e2c2ef4135e5a95712d0d0cffaa8> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x1ae219000 - 0x1ae22ffff libAccessibility.dylib arm64 <4183b22ccfe73252b79801a32fd5338d> /usr/lib/libAccessibility.dylib
0x1ae230000 - 0x1ae6d6fff libwebrtc.dylib arm64 /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1ae6d7000 - 0x1ae743fff ContactsFoundation arm64 /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x1ae744000 - 0x1affe5fff WebCore arm64 /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x1affe6000 - 0x1b0171fff WebKitLegacy arm64 <72b67a3b987030d3b41c6b75ba35f598> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x1b0172000 - 0x1b01a3fff DataAccessExpress arm64 <30def6ba724d3bf0b15aed82d418a882> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x1b01a4000 - 0x1b023efff AddressBookLegacy arm64 /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x1b023f000 - 0x1b029afff ProtectedCloudStorage arm64 /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x1b029b000 - 0x1b02cffff UserNotifications arm64 <0d08d97997d0386598f0f385e47dbcd4> /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x1b02d0000 - 0x1b02dbfff AppleIDAuthSupport arm64 <468eeabf20be394bb7c1a9cd55c7080a> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1b02dc000 - 0x1b0338fff AuthKit arm64 <7c16afd7e4e13f0392bb89699c2c0f19> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x1b0379000 - 0x1b0379fff UIKit arm64 /System/Library/Frameworks/UIKit.framework/UIKit
0x1b037a000 - 0x1b038dfff DocumentManagerCore arm64 /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1b038e000 - 0x1b039cfff HangTracer arm64 <5a15b87816da321d87f6e0e635409ee3> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1b039d000 - 0x1b03f1fff PhysicsKit arm64 <2cb849e753bb39598a9b61a570558967> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1b03f2000 - 0x1b03f6fff StudyLog arm64 /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x1b03f7000 - 0x1b04e4fff UIFoundation arm64 <1b931c8912e33338a4a399bc548046ba> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x1b04e5000 - 0x1b060dfff CloudKit arm64 /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1b060e000 - 0x1b0615fff IntentsFoundation arm64 <94122606323d3019aac32cac43852226> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1b0616000 - 0x1b0903fff Intents arm64 <8878c1da4cf73c64a4e782a62036c960> /System/Library/Frameworks/Intents.framework/Intents
0x1b0904000 - 0x1b091cfff libresolv.9.dylib arm64 /usr/lib/libresolv.9.dylib
0x1b091d000 - 0x1b091ffff CoreDuetDebugLogging arm64 <989f2bc326f8390d8a00aa997a7491f2> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1b0920000 - 0x1b0951fff libtidy.A.dylib arm64 /usr/lib/libtidy.A.dylib
0x1b0952000 - 0x1b0b2afff CoreDuet arm64 <2ee4005851b631dea800034204fabd64> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x1b0b2b000 - 0x1b0b4dfff CoreDuetContext arm64 /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x1b0b4e000 - 0x1b0b60fff CoreDuetDaemonProtocol arm64 <374cb31631f8396aa1bc2a18cfccab12> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1b0b61000 - 0x1b0bccfff IMFoundation arm64 <54ecf135ff5738b381bcf8f963890f11> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x1b0bcd000 - 0x1b0bfefff vCard arm64 /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1b0bff000 - 0x1b0d1efff Contacts arm64 <55e1d18533643da4bb10a57345742911> /System/Library/Frameworks/Contacts.framework/Contacts
0x1b0d1f000 - 0x1b0d20fff DiagnosticLogCollection arm64 /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/DiagnosticLogCollection
0x1b0d21000 - 0x1b0d22fff Marco arm64 <89e35f51ffcb33a2b3e0550bb2e0e386> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1b0d23000 - 0x1b0d2afff MessageProtection arm64 <4a5fa063ed5f319fb68946d95866651a> /System/Library/PrivateFrameworks/MessageProtection.framework/MessageProtection
0x1b0d2b000 - 0x1b1041fff StoreServices arm64 <7276e8776dbe3d949a1b266bd938bdb3> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x1b1042000 - 0x1b1059fff Engram arm64 <41bdbdddec9d38d7901b7ea3159084e1> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1b105a000 - 0x1b1174fff IDSFoundation arm64 <68efd5a41e9a362a9e27cb42961a348f> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x1b1175000 - 0x1b1180fff CaptiveNetwork arm64 /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x1b1181000 - 0x1b11b2fff EAP8021X arm64 /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x1b11b3000 - 0x1b11f0fff MobileWiFi arm64 <03cfbf6142c7310386e56aa2c7fe3ccd> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x1b11f1000 - 0x1b11f3fff OAuth arm64 /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1b11f4000 - 0x1b11f6fff CommonAuth arm64 /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1b11f7000 - 0x1b1267fff Heimdal arm64 <7b1184f444293581984ad9b33d7204dd> /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1b1268000 - 0x1b1291fff GSS arm64 <74b973d471d83cbc879a82d13c3db585> /System/Library/Frameworks/GSS.framework/GSS
0x1b1292000 - 0x1b12abfff ApplePushService arm64 <247da4d634c638c5a3f46053934aa7c6> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x1b12ac000 - 0x1b1346fff AccountsDaemon arm64 <079f9307b69239668e9b72c55e8ee396> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1b1347000 - 0x1b1369fff AppleIDSSOAuthentication arm64 <4f6b0aabbfc230a7b9f394738af1cba9> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1b136a000 - 0x1b13effff AppleAccount arm64 /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x1b13f0000 - 0x1b154cfff CoreUtils arm64 /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1b154d000 - 0x1b1662fff IDS arm64 <893cd329e6b23da4a8a600b87ca6bcc2> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x1b1663000 - 0x1b1689fff MediaServices arm64 <30d81dad1c753200acb10bde0ce1b998> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x1b168a000 - 0x1b186afff MediaRemote arm64 /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x1b186b000 - 0x1b1886fff UserManagement arm64 /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x1b1887000 - 0x1b1897fff MobileBluetooth arm64 /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x1b1898000 - 0x1b18c8fff Bom arm64 <27d2cb8ad22f3b1fa9e4ab01fdef2b2f> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1b18c9000 - 0x1b18cdfff CommunicationsFilter arm64 <3c91664453d23bd8aa92105c002ae20e> /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x1b18ce000 - 0x1b18f2fff FTAWD arm64 /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1b18f3000 - 0x1b194efff FTServices arm64 /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x1b1988000 - 0x1b1993fff ProactiveEventTracker arm64 <2a5a658b49f03cc18f9d1f70127e5782> /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1b1994000 - 0x1b19e2fff ChunkingLibrary arm64 /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1b19e3000 - 0x1b19f2fff libnetworkextension.dylib arm64 <79117027246d316da9176d30131acdba> /usr/lib/libnetworkextension.dylib
0x1b19f3000 - 0x1b1a17fff AddressBook arm64 <39fe84ea4b9c3ba095c4b6f1b894a55e> /System/Library/Frameworks/AddressBook.framework/AddressBook
0x1b295d000 - 0x1b2b16fff NetworkExtension arm64 <0c52eb9491143d328ad15189d938ac42> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1b2b17000 - 0x1b2f77fff SiriTTS arm64 /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x1b2fd6000 - 0x1b3017fff VoiceServices arm64 /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x1b316b000 - 0x1b318afff AssetCacheServices arm64 <6097ccc96d523d47850a4458c87b89d2> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x1b318b000 - 0x1b3247fff NetworkServiceProxy arm64 /System/Library/PrivateFrameworks/NetworkServiceProxy.framework/NetworkServiceProxy
0x1b3248000 - 0x1b3320fff MMCS arm64 /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1b3321000 - 0x1b332dfff BluetoothManager arm64 <942a68b6d7263efdafcf39d93424cef2> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x1b332e000 - 0x1b339ffff CoreDAV arm64 <8f78567cedcc32d3afd1cd5fbe53dc50> /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1b33a0000 - 0x1b33d4fff iCalendar arm64 <6e8d2ab6d7fa3d6b84868d61c137e5bb> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1b33d5000 - 0x1b33e3fff PersonaKit arm64 <911f0bb1661e340e8eda6e88f3c6a6f1> /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1b33e4000 - 0x1b343cfff CalendarFoundation arm64 <9144e0d9a25e3b0b974ac876593f3c9e> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x1b343d000 - 0x1b346dfff PhotosFormats arm64 <6096c9c5e2023847be8bdfe12d8939c6> /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x1b346e000 - 0x1b350bfff CalendarDatabase arm64 <4a1572ce39fd3d44b6f31e231005911b> /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x1b350c000 - 0x1b3566fff CalendarDaemon arm64 /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1b3567000 - 0x1b36e0fff CloudPhotoLibrary arm64 /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1b36e1000 - 0x1b37d0fff EventKit arm64 <47ce793d8afe3bd0a4cb937132fe0746> /System/Library/Frameworks/EventKit.framework/EventKit
0x1b37d1000 - 0x1b3805fff AssetsLibraryServices arm64 <677ec4a0ad75356baf10b9ff08e4c638> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x1b383b000 - 0x1b3864fff DCIMServices arm64 <674fb4e464eb3961bdfd60f4f013bf36> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1b3865000 - 0x1b39a0fff CoreMediaStream arm64 /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1b39a1000 - 0x1b39a8fff XPCKit arm64 <1928f59ecf1831558680d4a687dcbc77> /System/Library/PrivateFrameworks/XPCKit.framework/XPCKit
0x1b3a8e000 - 0x1b3aacfff CloudPhotoServices arm64 /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1b3aad000 - 0x1b3ab8fff CoreRecents arm64 /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x1b3ab9000 - 0x1b3ad7fff MediaStream arm64 <02b4f954594f38a38b954ae6da5cce5c> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1b3ad8000 - 0x1b401efff PhotoLibraryServices arm64 <04f51cd115193b9fafbc474a36b7f3a0> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x1b401f000 - 0x1b403bfff PrototypeTools arm64 <82893defb7153b6eba6699e6c387a853> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x1b403c000 - 0x1b40c5fff CoreSymbolication arm64 <4180ec89d0aa3c4c8981d1e51b275827> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x1b40c6000 - 0x1b420ffff SearchFoundation arm64 <80fb78b06a483271964cb9a20f764972> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x1b4210000 - 0x1b4216fff IncomingCallFilter arm64 /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x1b4217000 - 0x1b42d2fff iTunesStore arm64 /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x1b42d3000 - 0x1b42d9fff libtzupdate.dylib arm64 <6221b88e437d3da7a635d0ab571e0bfc> /usr/lib/libtzupdate.dylib
0x1b42da000 - 0x1b4430fff Preferences arm64 <4ed031e9cc03319f8784a5850113cba0> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x1b4431000 - 0x1b4439fff CoreTime arm64 <2794cf580ba139f88b8724d49ad6114d> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1b443a000 - 0x1b448cfff CoreAppleCVA arm64 <9c7ad0c39c3933018ab769f2869e9eaf> /System/Library/PrivateFrameworks/CoreAppleCVA.framework/CoreAppleCVA
0x1b448d000 - 0x1b44cdfff DifferentialPrivacy arm64 <43737d3dd672390eaaf18cc8919fbd14> /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1b44ce000 - 0x1b4679fff AppleCVA arm64 <18bd7bea950e3f37a8b742d7b05f1e3d> /System/Library/PrivateFrameworks/AppleCVA.framework/AppleCVA
0x1b467a000 - 0x1b4717fff Montreal arm64 <9245892a98243ad7aebbc667218433a6> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1b4718000 - 0x1b4a8cfff Espresso arm64 <40771d39da953fe79f7e4377a348b679> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1b4a8d000 - 0x1b4a93fff MobileSystemServices arm64 <3d8a3d2af32a3b38b97aadce8b3a52c3> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1b4a94000 - 0x1b4c99fff Photos arm64 <9d3adaed7a8d35929890e07f123d8b80> /System/Library/Frameworks/Photos.framework/Photos
0x1b4ca6000 - 0x1b4f09fff CoreML arm64 /System/Library/Frameworks/CoreML.framework/CoreML
0x1b4f0a000 - 0x1b4f0efff CoreOptimization arm64 <8e4a143b80803fbcbf4ba81c5147f16b> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1b4f0f000 - 0x1b4f6cfff SafariCore arm64 <44e771e5e2d43bbeae883fb2949e0e10> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x1b4f6d000 - 0x1b4fc7fff CorePrediction arm64 <130e93cf8cae314ebc1ac0f3fe513984> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1b4fc8000 - 0x1b50cefff Navigation arm64 <4a0cd173af1b38409bec071cd56633fb> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1b50cf000 - 0x1b50e8fff ContactsDonation arm64 /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x1b50e9000 - 0x1b5115fff Futhark arm64 <77448663e4223b33994cc48aeea12237> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1b5116000 - 0x1b518efff NanoRegistry arm64 <5cb2c6baa0393ee6971e0144f08cff74> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1b518f000 - 0x1b51eafff ToneLibrary arm64 <05c1cf264aaf3c3e931f3124cc7897ce> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x1b5203000 - 0x1b525ffff ContactsUICore arm64 /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x1b5260000 - 0x1b53d8fff ContactsUI arm64 <3313ec1d0e393367bda348a500fe5d8d> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x1b53d9000 - 0x1b54a4fff CorePDF arm64 <65141725213e3b7e8046166235649b2f> /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x1b54a5000 - 0x1b5769fff Vision arm64 <64a0e95e0301312ab2aec92c532b6613> /System/Library/Frameworks/Vision.framework/Vision
0x1b576a000 - 0x1b5c38fff WebKit arm64 /System/Library/Frameworks/WebKit.framework/WebKit
0x1b5c39000 - 0x1b5cdafff BulletinBoard arm64 /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x1b5cdb000 - 0x1b5ce0fff ConstantClasses arm64 /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x1b5ce1000 - 0x1b5ce9fff CertUI arm64 <6fca30de5c8c3fec81f6f7d36b245a80> /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1b5de7000 - 0x1b5e85fff MediaPlatform arm64 <3112141562173a39bc44731d8a0179a8> /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1b5e86000 - 0x1b5ef0fff WebBookmarks arm64 /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1b5ef1000 - 0x1b5efcfff DAAPKit arm64 <45065e551abd3549a03fa44dd0e3973d> /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1b5ffa000 - 0x1b630cfff MediaLibraryCore arm64 <1ea130319eaa3b6b80ebd9e17a7af587> /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1b630f000 - 0x1b65a6fff MusicLibrary arm64 <987e74c794253b87b1ad557c905a122a> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1b65a7000 - 0x1b6c01fff VectorKit arm64 /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x1b6c02000 - 0x1b6e4ffff MapKit arm64 <9b26cfd95e3d3060835d0366fa4371df> /System/Library/Frameworks/MapKit.framework/MapKit
0x1b6e50000 - 0x1b6ff3fff iTunesCloud arm64 <00f5f3b4b0813700a46670bdbfa53212> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x1b6ff4000 - 0x1b7095fff HomeSharing arm64 <0a82b64f9429306c8ea7af799a25cd9a> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1b7208000 - 0x1b7217fff NanoPreferencesSync arm64 /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1b7218000 - 0x1b768ffff MediaPlayer arm64 <5426d543e9673e73b5bec8adb7b5f469> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x1b7690000 - 0x1b76b5fff MobileInstallation arm64 <67607be899883a63a31ebd577036c705> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x1b76c1000 - 0x1b76c3fff InternationalTextSearch arm64 <3417668195f43603b8ca3946b0d5c061> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x1b7720000 - 0x1b7757fff ProactiveSupport arm64 <709546f5a7343f1a9a8f84c5e2051495> /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x1b7792000 - 0x1b785ffff TelephonyUtilities arm64 /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x1b7860000 - 0x1b789bfff CalendarUIKit arm64 <9111963fc0e2316a82ae356e9eeb8da3> /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x1b7919000 - 0x1b792cfff AssetsLibrary arm64 <91a31178d28b3438a2a1c4d17785c63f> /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1b792d000 - 0x1b7b10fff EventKitUI arm64 <51f37cede75a36c487cf12c99664693b> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x1b7c0b000 - 0x1b7cacfff Social arm64 <74e51029b81039d19feaadf01f6c3b7e> /System/Library/Frameworks/Social.framework/Social
0x1b7d48000 - 0x1b7d60fff CoreFollowUp arm64 <4b2fb372dc6d3badbd42f88d340d65f9> /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x1b7d61000 - 0x1b7dd5fff CoreSuggestions arm64 <2f07ad4cdeae347698d1d7e66ce9b905> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x1b7de7000 - 0x1b7e7afff CoreRecognition arm64 <42fdc939f5453bfeabe138f07633b237> /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x1b8233000 - 0x1b82e6fff CoreParsec arm64 /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x1b8317000 - 0x1b8349fff SharedUtils arm64 /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x1b838c000 - 0x1b8454fff VideoSubscriberAccount arm64 /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x1b8455000 - 0x1b8488fff Pegasus arm64 <4ebc86671dce39b9b413d98021a810d2> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x1b8489000 - 0x1b8541fff AVKit arm64 /System/Library/Frameworks/AVKit.framework/AVKit
0x1b8572000 - 0x1b8575fff SharedWebCredentials arm64 <6c44e611145134069102819656ea5250> /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1b8577000 - 0x1b8591fff SafariFoundation arm64 /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1b8592000 - 0x1b8774fff HealthKit arm64 <32931753438d3851bab794b127b82ffb> /System/Library/Frameworks/HealthKit.framework/HealthKit
0x1b8775000 - 0x1b878bfff LocalAuthentication arm64 <7a08aebc8197316fabd388f5f5659394> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x1b878c000 - 0x1b878efff ParsecSubscriptionServiceSupport arm64 <1e2bd96e579033a1a0a3d8b51686a4b5> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1b8839000 - 0x1b8a86fff SafariShared arm64 <65ee7eff33933d69bace7d9b0e73ae3d> /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x1b8a87000 - 0x1b8acafff WebUI arm64 /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1b8acb000 - 0x1b8ad8fff SetupAssistantSupport arm64 <39bceb5a03123d9c996fb656296a50bd> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1b8ad9000 - 0x1b8b05fff SetupAssistant arm64 /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x1b8b51000 - 0x1b8b5bfff MobileStorage arm64 /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x1b8b9f000 - 0x1b8bfcfff ImageCapture arm64 <45f217d34db239b188a248daada67d2b> /System/Library/PrivateFrameworks/ImageCapture.framework/ImageCapture
0x1b981e000 - 0x1b9824fff LinguisticData arm64 <33e9c5f1892f302983980fb3b711998a> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x1b9ed0000 - 0x1b9f08fff StoreKit arm64 /System/Library/Frameworks/StoreKit.framework/StoreKit
0x1ba0e5000 - 0x1ba0fffff MetalKit arm64 /System/Library/Frameworks/MetalKit.framework/MetalKit
0x1baece000 - 0x1baf95fff PDFKit arm64 <03d0dacc8a033e10b8b6fe9c457046cd> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x1bb340000 - 0x1bb352fff MobileDeviceLink arm64 <74de7d2ef66b3e0287231da7a93732b3> /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x1bb43f000 - 0x1bb488fff MobileBackup arm64 /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1bb489000 - 0x1bb4d6fff SafariSafeBrowsing arm64 /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1bb4f4000 - 0x1bb62efff SafariServices arm64 /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1bb62f000 - 0x1bb693fff AppStoreDaemon arm64 /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x1bc6b5000 - 0x1bc6c0fff MobileActivation arm64 /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x1bc7f6000 - 0x1bc988fff Sharing arm64 <4d1e8eeab2743b09a2579af061f75bf1> /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1bcdfe000 - 0x1bce13fff NewsFoundation arm64 <44590ec0ad7035308c8d125bdb412678> /System/Library/PrivateFrameworks/NewsFoundation.framework/NewsFoundation
0x1bce14000 - 0x1bd08ffff NewsTransport arm64 <9efd85fac1de3a8e9fab96ceb55f26df> /System/Library/PrivateFrameworks/NewsTransport.framework/NewsTransport
0x1bd1ef000 - 0x1bd551fff NewsCore arm64 <89f0066176f33efbb152cc27f7be6db4> /System/Library/PrivateFrameworks/NewsCore.framework/NewsCore
0x1bd595000 - 0x1bd5effff ClockKit arm64 <86f4d106f7c93ce783355eade74fef3b> /System/Library/PrivateFrameworks/ClockKit.framework/ClockKit
0x1bd610000 - 0x1bd614fff NewsDaemon arm64 /System/Library/PrivateFrameworks/NewsDaemon.framework/NewsDaemon
0x1bdcfe000 - 0x1bdd16fff NewsServicesInternal arm64 <750df8e27ec43a988ef2e92477c82545> /System/Library/PrivateFrameworks/NewsServicesInternal.framework/NewsServicesInternal
0x1bde97000 - 0x1bde9dfff DuetRecommendation arm64 <1c6c3de9325e3d1c849807a02c028731> /System/Library/PrivateFrameworks/DuetRecommendation.framework/DuetRecommendation
0x1bde9e000 - 0x1bdef1fff LoggingSupport arm64 <1f1c6027db803b0da5d603c7892d70eb> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x1be086000 - 0x1be0dffff NewsToday arm64 <9e24a1b986af351cb9d42f65217ad65c> /System/Library/PrivateFrameworks/NewsToday.framework/NewsToday
0x1be252000 - 0x1be25bfff FamilyCircle arm64 /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x1be25c000 - 0x1be261fff NewsServices arm64 /System/Library/PrivateFrameworks/NewsServices.framework/NewsServices
0x1bffa7000 - 0x1bffcbfff AppSupportUI arm64 /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x1c0a3c000 - 0x1c0a82fff Catalyst arm64 <3830192a1539357389fcc6d0bb8235ab> /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x1c0d86000 - 0x1c0d8bfff kperf arm64 /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1c0fe5000 - 0x1c100bfff CellularPlanManager arm64 /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1c100c000 - 0x1c1061fff DeviceManagement arm64 <23acbd4662f8361a8e7e15d296cffa29> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x1c11f3000 - 0x1c11fbfff kperfdata arm64 <07cdf27744d53c899ef6568ca60a93d7> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1c1241000 - 0x1c1249fff libdscsym.dylib arm64 /usr/lib/libdscsym.dylib
0x1c1617000 - 0x1c1652fff ktrace arm64 <5e716bd202b433d599fd14e8ae790d5b> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1c2c73000 - 0x1c2cc2fff DataDetectorsUI arm64 <43d06a50e5963867aa515edf7c1571d5> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
0x1c389f000 - 0x1c38e6fff BiometricKit arm64 <52706876f39f3fd89344ff2538d52974> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x1c3906000 - 0x1c3915fff CTCarrierSpace arm64 <5bd71f5764953d509aa3d71588943f8c> /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x1c3dad000 - 0x1c3dc1fff DeviceIdentity arm64 <09fbff51fd9433ae93ea4a508372f62e> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1c5edc000 - 0x1c5f18fff Rapport arm64 <6503af18058d3222a1a287fbab594cfa> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1c5f55000 - 0x1c5f72fff SignpostSupport arm64 <5c82dad2278137fab253183ff0198ad2> /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1c6ec7000 - 0x1c6ecefff libMatch.1.dylib arm64 /usr/lib/libMatch.1.dylib
0x1c6f17000 - 0x1c6f33fff libtailspin.dylib arm64 /usr/lib/libtailspin.dylib
0x1c7232000 - 0x1c7518fff RawCamera arm64 <7d18ab54ced13c699aadfedec7f08343> /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x1c870d000 - 0x1c874efff WatchConnectivity arm64 <68814f4ce9513d04b37856893eb52aad> /System/Library/Frameworks/WatchConnectivity.framework/WatchConnectivity
0x1c9d03000 - 0x1c9d0efff ContextKit arm64 <8f13366b75303077a3405338af83f561> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x1c9f85000 - 0x1c9facfff CoreServicesInternal arm64 /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1ca63b000 - 0x1ca64cfff libGSFontCache.dylib arm64 /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1ca64d000 - 0x1ca67ffff libTrueTypeScaler.dylib arm64 <015e8c878acc3f019b9c7a83f6606823> /System/Library/PrivateFrameworks/FontServices.framework/libTrueTypeScaler.dylib
0x1cc1a7000 - 0x1cc1abfff InternationalSupport arm64 /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1cd3bc000 - 0x1cd3c8fff PersonaUI arm64 <46a2953340543dcd8f740b39e81eca56> /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1cd745000 - 0x1cd74ffff SignpostCollection arm64 /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1ce2d4000 - 0x1ce2d7fff XCTTargetBootstrap arm64 <125834652e7a3a11bc651eaa9e666daf> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x1ce31a000 - 0x1ce32cfff libEDR arm64 /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1cee59000 - 0x1cee66fff libMobileGestaltExtensions.dylib arm64 <1c30ea252776384bad74952401a7c015> /usr/lib/libMobileGestaltExtensions.dylib
0x1cef78000 - 0x1cef78fff libcharset.1.dylib arm64 <261ef847003736228dff4aa79221b198> /usr/lib/libcharset.1.dylib
0x1cfa47000 - 0x1cfa48fff libsandbox.1.dylib arm64 <96115773ec793ebc8a7744b0d3b0d960> /usr/lib/libsandbox.1.dylib
0x1cfb76000 - 0x1cfb80fff AuthenticationServices arm64 /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1cfc08000 - 0x1cfd5cfff CoreServices arm64 <7ca0c8226edd3f0e9de6c9ada3f8854c> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1cfd89000 - 0x1cfda2fff MPSRayIntersector arm64 /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1cfdd2000 - 0x1cff0dfff Network arm64 /System/Library/Frameworks/Network.framework/Network
0x1cff18000 - 0x1cff26fff ANEServices arm64 <2cb537a340fc305e9b367d6829ce597b> /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1cff2b000 - 0x1cff2ffff ASEProcessing arm64 <3703b68e414f32dbbdd1ac4a97a7ba1d> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1cff30000 - 0x1cff3bfff AXCoreUtilities arm64 <35b935e1fb03325a967b71c339a63fd1> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x1d01b6000 - 0x1d02f3fff AppleMediaServices arm64 /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x1d02f4000 - 0x1d0303fff AppleNeuralEngine arm64 /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1d048d000 - 0x1d04c4fff C2 arm64 <04e0090ef3493354a65e6f4a3919ad37> /System/Library/PrivateFrameworks/C2.framework/C2
0x1d0655000 - 0x1d0660fff Categories arm64 <002d77e4c7ac35d68959e43c22c75793> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x1d0668000 - 0x1d0786fff ConfigurationEngineModel arm64 <2bf421211473365f9ea737cd4273041f> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1d0a01000 - 0x1d0a59fff DocumentManager arm64 /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x1d0b96000 - 0x1d0b9afff IdleTimerServices arm64 /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x1d0c16000 - 0x1d0c41fff MetadataUtilities arm64 /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x1d11aa000 - 0x1d11bdfff NewsAnalyticsUpload arm64 <70f66f810cf93b5c817cc5b0ab43b811> /System/Library/PrivateFrameworks/NewsAnalyticsUpload.framework/NewsAnalyticsUpload
0x1d11c0000 - 0x1d1211fff OTSVG arm64 <120d3e9410e33b1fbfebc7db541098d2> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1d130f000 - 0x1d136efff PhotoFoundation arm64 <0908388d88763d02ab84a5489ddfa37d> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x1d13c2000 - 0x1d1407fff PhotosImagingFoundation arm64 <74618eb684c13ca793e60c9596a273a7> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1d145c000 - 0x1d14bcfff ROCKit arm64 /System/Library/PrivateFrameworks/ROCKit.framework/ROCKit
0x1d1634000 - 0x1d1665fff RemoteConfiguration arm64 <03b1c8bf68793be2a1c6f3335fcddf4a> /System/Library/PrivateFrameworks/RemoteConfiguration.framework/RemoteConfiguration
0x1d1675000 - 0x1d16d1fff RemoteManagement arm64 /System/Library/PrivateFrameworks/RemoteManagement.framework/RemoteManagement
0x1d16d2000 - 0x1d16e4fff RemoteTextInput arm64 /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1d170d000 - 0x1d17a7fff SampleAnalysis arm64 /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1d188c000 - 0x1d188cfff SignpostNotification arm64 <7d1b1e317bea32ecaf71290b96d6e123> /System/Library/PrivateFrameworks/SignpostNotification.framework/SignpostNotification
0x1d18fb000 - 0x1d1903fff StatsKit arm64 <64e328675e8b33fab748332751a870dd> /System/Library/PrivateFrameworks/StatsKit.framework/StatsKit
0x1d2428000 - 0x1d355dfff UIKitCore arm64 /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x1d355e000 - 0x1d3569fff UIKitServices arm64 /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x1d356a000 - 0x1d3571fff URLFormatting arm64 <6103f7f4467a38ac889cf6fc4946ef10> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1d3572000 - 0x1d3594fff UsageTracking arm64 /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking

EOF

Unable to run example in Xcode 12.0.1

I appreciate your work on this project. Unfortunately, I have been unable to build the example project (and unable to build a separate project using the library) with Xcode 12.0.1.

I followed the below instructions:

git clone https://github.com/mtford90/react-native-watch-connectivity.git
cd react-native-watch-connectivity/example
yarn install
cd ios
pod install
cd ..
yarn ios # Run app

These steps succeeded, until the last. After "yarn ios", I received the following from the terminal:

info Found Xcode workspace "RNWatchExample.xcworkspace"
info Launching iPhone 11 (iOS 14.0)
info Building (using "xcodebuild -workspace RNWatchExample.xcworkspace -configuration Debug -scheme RNWatchExample -destination id=C92931BC-2D47-449B-9E6C-66965F80DEB0")
..
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening RNWatchExample.xcworkspace. Run CLI with --verbose flag for more details.
Command line invocation:
    /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace RNWatchExample.xcworkspace -configuration Debug -scheme RNWatchExample -destination id=C92931BC-2D47-449B-9E6C-66965F80DEB0

xcodebuild: error: The workspace named "RNWatchExample" does not contain a scheme named "RNWatchExample". The "-list" option can be used to find the names of the schemes in the workspace.

This problem was apparently due to the relevant scheme being named "Pods-RNWatchExample" instead of "RNWatchExample". I duplicated "Pods-RNWatchExample" and renamed the duplicate "RNWatchExample" to cure that error. (Product --> Schemes --> Manage Schemes)

Upon re-running "yarn ios", the build proceeded for a minute before it terminated with the following:
error Failed to get the target build directory

I then tried to build directly in Xcode, and received the following errors:

WatchApp Extension Group

Swift Compiler Error Group - /react-native-watch-connectivity/example/ios/WatchApp Extension/InterfaceController.swift:183:18: Cannot find 'CLKComplicationServer' in scope

Uncategorized Group - Command CompileSwift failed with a nonzero exit code

Concerning the "CLKComplicationServer" error, my best guess is that the ClockKit library isn't imported.

Thank you for any support or guidance you're able to provide.

`WatchSessionBecameInactive` is not a supported event type for RNWatch.

WatchSessionBecameInactive is not a supported event type for RNWatch. Supported events are: WatchFileTransfer, WatchReceiveMessage, WatchReceiveMessageData, WatchActivationError, WatchReachabilityChanged, WatchUserInfoReceived, WatchApplicationContextReceived, WatchPairStatusChanged, WatchInstallStatusChanged

It happens whenever you switch from one Apple Watch to another. I believe the issue comes from the fact that WatchSessionBecameInactive is not listed in the lib/native-module.ts file .

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.