Can't Get Google Sign in To Wok on iOS

So this is super frustrating and embarrassing because I have Google Sign in working on multiple other apps just fine on iOS… But on my latest app a game I am just stuck. When I tap my Google Sign in Button it asks if I want to sign in with Google I click ok and it just opens a blank white page and I cant actually sign in…

I have followed all the instructions here on the google_sign_in package on pub dev: google_sign_in_ios | Flutter package

The frustrating thing is that I am not getting much of any erros in the debug window in visual studio code.

I have a small hunch it may be that I changed the firestore configuration from com.example.appName to com.appName but I did redownload the GoogleService-Info.plist file and use:

REVERSED_CLIENT_ID in the CFBundleURLTypes array in info.plist

CLIENT_ID for the GIDClientID in info.plist

When I make the attempt this is all I see in the flutter debug:

flutter: Consent not required or already granted
flutter: 🚀 AdManager: Initializing MobileAds SDK
flutter: ✅ AdManager: Google Mobile Ads initialized successfully
flutter: AdManager -> MobileAds initialized (via InitializationHelper)
flutter: Called sign in with google

I havent used console for debuggign before but I posted those logs as well at the bottom of this post.

Here is all I get on sign in:

My sing in code is below but I think its a set up issue:

import 'package:aridromos/services/auth_service.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
import 'dart:io' show Platform;

class LoginScreen extends StatelessWidget {
  const LoginScreen({super.key});

  @override
  Widget build(BuildContext context) {
    final authService = Provider.of<AuthService>(context);

    return Scaffold(
      appBar: AppBar(
        title: const Text('Login to Career Mode'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: [
            ElevatedButton.icon(
              icon: const Icon(Icons
                  .g_mobiledata), 
              label: const Text('Sign in with Google'),
              onPressed: () async {
                await authService.signInWithGoogle();
              },
            ),
            if (Platform.isIOS || Platform.isMacOS) ...[
              const SizedBox(height: 20),
              ElevatedButton.icon(
                icon: const Icon(Icons.apple),
                label: const Text('Sign in with Apple'),
                onPressed: () async {
                  await authService.signInWithApple();
                },
              ),
            ]
          ],
        ),
      ),
    );
  }
}

Auth service:

import 'package:firebase_auth/firebase_auth.dart';
import 'package:google_sign_in/google_sign_in.dart';
import 'package:sign_in_with_apple/sign_in_with_apple.dart';
import 'dart:io' show Platform;
import 'package:flutter/foundation.dart' show kIsWeb;

class AuthService {
  final FirebaseAuth _auth = FirebaseAuth.instance;
  final GoogleSignIn _googleSignIn = GoogleSignIn();

  Stream<User?> get user => _auth.authStateChanges();

  Future<UserCredential?> signInWithGoogle() async {
    print("Called sign in with google");
    try {
      final GoogleSignInAccount? googleUser = await _googleSignIn.signIn();
      if (googleUser == null) {
        // The user canceled the sign-in
        return null;
      }
      final GoogleSignInAuthentication googleAuth =
          await googleUser.authentication;
      final AuthCredential credential = GoogleAuthProvider.credential(
        accessToken: googleAuth.accessToken,
        idToken: googleAuth.idToken,
      );
      return await _auth.signInWithCredential(credential);
    } catch (e) {
      print(e);
      return null;
    }
  }

  Future<UserCredential?> signInWithApple() async {
    if (!kIsWeb && !Platform.isIOS && !Platform.isMacOS) {
      throw UnimplementedError(
          'Sign in with Apple is only available on iOS and macOS.');
    }

    try {
      final appleCredential = await SignInWithApple.getAppleIDCredential(
        scopes: [
          AppleIDAuthorizationScopes.email,
          AppleIDAuthorizationScopes.fullName,
        ],
      );

      final OAuthProvider oAuthProvider = OAuthProvider('apple.com');
      final AuthCredential credential = oAuthProvider.credential(
        idToken: appleCredential.identityToken,
        accessToken: appleCredential.authorizationCode,
      );

      return await _auth.signInWithCredential(credential);
    } catch (e) {
      print(e);
      return null;
    }
  }

  Future<void> signOut() async {
    await _googleSignIn.signOut();
    await _auth.signOut();
  }
}

Console log errors:

error	09:20:57.871043-0700	managedappdistributiond	Simulator is not supported
error	09:20:58.283655-0700	pairedsyncd	Fatal error: pairing store path was nil for PSDFileManager.
error	09:21:00.592650-0700	proactiveeventtrackerd	User passwd entry or home directory is not found
error	09:21:00.592767-0700	proactiveeventtrackerd	Failed to initialize PETEventTracker2.
fault	09:21:00.592793-0700	proactiveeventtrackerd	Failed to initialize the tracker
error	09:21:00.592827-0700	proactiveeventtrackerd	Failed to initialize PET service. Exiting...
error	09:21:07.406701-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(-1) returned -1 1 (Operation not permitted)
error	09:21:07.406716-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(0) returned -1 1 (Operation not permitted)
error	09:21:07.406898-0700	runningboardd	[app<com.apple.SafariViewService((null))>:32660] Memorystatus failed with unexpected error: Operation not permitted (1)
error	09:21:07.406917-0700	runningboardd	[app<com.apple.SafariViewService((null))>:32660] Memorystatus failed with unexpected error: Invalid argument (22)
error	09:21:07.406924-0700	runningboardd	[app<com.apple.SafariViewService((null))>:32660] Memorystatus failed with unexpected error: Operation not permitted (1)
error	09:21:07.421762-0700	runningboardd	[app<com.apple.SafariViewService((null))>:32660] Error 1 setting Carplay mode to 0: Operation not permitted
error	09:21:07.902470-0700	backboardd	ignoring non-routable key commands for pid:32660 {: ((code: 29))}
error	09:21:07.903987-0700	SafariViewService	Failed to send CA Event for app launch measurements for ca_event_type: 0 event_name: com.apple.app_launch_measurement.FirstFramePresentationMetric
error	09:21:08.018197-0700	backboardd	cycle detected between [73122-15] -> [73122-1]
error	09:21:08.018244-0700	backboardd	cycle detected between [73122-15] -> [73122-1]
error	09:21:08.068715-0700	managedappdistributiond	Simulator is not supported
error	09:21:08.255099-0700	backboardd	ignoring non-routable key commands for pid:32660 {: ((code: 29))}
error	09:21:08.347958-0700	SafariViewService	Failed to send CA Event for app launch measurements for ca_event_type: 1 event_name: com.apple.app_launch_measurement.ExtendedLaunchMetrics
error	09:21:08.389555-0700	backboardd	cycle detected between [73122-17] -> [73122-1]
error	09:21:08.389609-0700	backboardd	cycle detected between [73122-17] -> [73122-1]
error	09:21:08.591634-0700	Runner	nw_connection_copy_connected_local_endpoint_block_invoke [C12] Client called nw_connection_copy_connected_local_endpoint on unconnected nw_connection
error	09:21:08.591660-0700	Runner	nw_connection_copy_connected_remote_endpoint_block_invoke [C12] Client called nw_connection_copy_connected_remote_endpoint on unconnected nw_connection
error	09:21:08.591685-0700	Runner	nw_connection_copy_protocol_metadata_internal_block_invoke [C12] Client called nw_connection_copy_protocol_metadata_internal on unconnected nw_connection
error	09:21:08.594129-0700	Runner	nw_connection_copy_connected_local_endpoint_block_invoke [C10] Connection has no local endpoint
error	09:21:08.594376-0700	Runner	nw_connection_copy_connected_local_endpoint_block_invoke [C10] Connection has no local endpoint
error	09:21:08.623325-0700	Runner	quic_conn_change_current_path [C10.1.1.1:2] [-fd60dd9a578169c0] tried to change paths, but no alternatives were found
error	09:21:08.625864-0700	Runner	nw_flow_service_writes Failing write request <nw_write_request> [57: Socket is not connected]
error	09:21:08.626080-0700	Runner	nw_write_request_report [C10] Send failed with error "Socket is not connected"
error	09:21:08.627834-0700	Runner	Task <2492645C-6C87-4133-B944-94F79FC3E92E>.<1> HTTP load failed, 152/0 bytes (error code: -1005 [4:-4])
error	09:21:08.632350-0700	Runner	nw_connection_copy_connected_local_endpoint_block_invoke [C10] Connection has no local endpoint
error	09:21:08.632942-0700	Runner	nw_protocol_implementation_lookup_path [C10.1.1.1:2] No path found for 8e94053ee9874498
error	09:21:08.637427-0700	Runner	Task <2492645C-6C87-4133-B944-94F79FC3E92E>.<1> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 "The network connection was lost." UserInfo={_kCFStreamErrorCodeKey=-4, NSUnderlyingError=0x6000018486c0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 "(null)" UserInfo={NSErrorPeerAddressKey=<CFData 0x600003396220 [0x11ea041d0]>{length = 28, capacity = 28, bytes = 0x1c1e01bb000000002607f8b040070817 ... 0000200e00000000}, _kCFStreamErrorCodeKey=-4, _kCFStreamErrorDomainKey=4}}, _NSURLErrorFailingURLSessionTaskErrorKey=LocalUploadTask <2492645C-6C87-4133-B944-94F79FC3E92E>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
    "LocalUploadTask <2492645C-6C87-4133-B944-94F79FC3E92E>.<1>"
), NSLocalizedDescription=The network connection was lost., NSErrorFailingURLStringKey=https://app-analytics-services-att.com/a, NSErrorFailingURLKey=https://app-analytics-services-att.com/a, _kCFStreamErrorDomainKey=4}
error	09:21:08.637433-0700	Runner	0x7f8e40acf418 10 Server protocol violation 0x02
error	09:21:08.637945-0700	Runner	11.10.0 - [FirebaseAnalytics][I-ACS901017] Encounter network error. Code, error: -1005, Error Domain=NSURLErrorDomain Code=-1005 "The network connection was lost." UserInfo={_kCFStreamErrorCodeKey=-4, NSUnderlyingError=0x6000018486c0 {Error Domain=kCFErrorDomainCFNetwork Code=-1005 "(null)" UserInfo={NSErrorPeerAddressKey=<CFData 0x600003396220 [0x11ea041d0]>{length = 28, capacity = 28, bytes = 0x1c1e01bb000000002607f8b040070817 ... 0000200e00000000}, _kCFStreamErrorCodeKey=-4, _kCFStreamErrorDomainKey=4}}, _NSURLErrorFailingURLSessionTaskErrorKey=LocalUploadTask <2492645C-6C87-4133-B944-94F79FC3E92E>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=(
    "LocalUploadTask <2492645C-6C87-4133-B944-94F79FC3E92E>.<1>"
), NSLocalizedDescription=The network connection was lost., NSErrorFailingURLStringKey=https://app-analytics-services-att.com/a, NSErrorFailingURLKey=https://app-analytics-services-att.com/a, _kCFStreamErrorDomainKey=4}
fault	09:21:08.648947-0700	Runner	0x7f8e40acf418 10 Control stream closed but connection is alive
error	09:21:08.656852-0700	Runner	11.10.0 - [FirebaseAnalytics][I-ACS012054] The number of upload retries exceeds the limit. Will remain unchanged.
error	09:21:08.681646-0700	SpringBoard	[lock]	Snapshot attempt failed because preconditions failed:
error	09:21:08.681696-0700	SpringBoard	[lock]	--> 'Lock variant needs to be fully locked ((null)/(null))'
error	09:21:08.934871-0700	pairedsyncd	Fatal error: pairing store path was nil for PSDFileManager.
error	09:21:10.783795-0700	proactiveeventtrackerd	User passwd entry or home directory is not found
error	09:21:10.783875-0700	proactiveeventtrackerd	Failed to initialize PETEventTracker2.
fault	09:21:10.783895-0700	proactiveeventtrackerd	Failed to initialize the tracker
error	09:21:10.783921-0700	proactiveeventtrackerd	Failed to initialize PET service. Exiting...
error	09:21:13.234914-0700	SafariViewService	Failed to resolve host network app id to config: bundleID: com.apple.WebKit.Networking instance ID: Optional([_EXExtensionInstanceIdentifier: 65B33FC5-0CE6-49EA-B53C-429EC37A99E3])
error	09:21:13.267853-0700	backboardd	ignoring non-routable key commands for pid:32660 {: ("
", (code: 29))}
error	09:21:13.334857-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(-1) returned -1 1 (Operation not permitted)
error	09:21:13.334877-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(0) returned -1 1 (Operation not permitted)
error	09:21:13.335140-0700	runningboardd	[xpcservice<com.apple.WebKit.Networking([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 114736818}[uuid:65B33FC5-0CE6-49EA-B53C-429EC37A99E3]:32678] Memorystatus failed with unexpected error: Operation not permitted (1)
error	09:21:13.335166-0700	runningboardd	[xpcservice<com.apple.WebKit.Networking([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 114736818}[uuid:65B33FC5-0CE6-49EA-B53C-429EC37A99E3]:32678] Memorystatus failed with unexpected error: Invalid argument (22)
error	09:21:13.353801-0700	runningboardd	[xpcservice<com.apple.WebKit.Networking([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 114736818}[uuid:65B33FC5-0CE6-49EA-B53C-429EC37A99E3]:32678] Error 1 setting Carplay mode to 0: Operation not permitted
error	09:21:13.407037-0700	SpringBoard	[<_UIKeyboardArbiterClientHandle: 0x60000391b190; [app<com.aridromos((null))>:32124] <<UIKBArbiterClientFocusContext: 0x6000003085e0; contextID = bb6391fd; sceneIdentity = com.apple.frontboard.systemappservices/FBSceneManager:sceneID<decode: mismatch for [%3A] got [OBJECT public sz:385]>com.aridromos-default >>; hosting PIDs {(
)}; level 0.000000; active NO [wants NO]; suppression 0; iav 0.000000; on screen NO; isAcquiringFocus: YES>] Acquiring focus timer elapsed, clearing acquiring focus state
error	09:21:13.456790-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(-1) returned -1 1 (Operation not permitted)
error	09:21:13.456804-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(0) returned -1 1 (Operation not permitted)
error	09:21:13.457151-0700	runningboardd	[xpcservice<com.apple.WebKit.WebContent([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 71395982}[uuid:D140854C-7256-4087-B5B6-7836C9D50938]:32679] Memorystatus failed with unexpected error: Operation not permitted (1)
error	09:21:13.457240-0700	runningboardd	[xpcservice<com.apple.WebKit.WebContent([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 71395982}[uuid:D140854C-7256-4087-B5B6-7836C9D50938]:32679] Memorystatus failed with unexpected error: Invalid argument (22)
error	09:21:13.470671-0700	runningboardd	[xpcservice<com.apple.WebKit.WebContent([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 71395982}[uuid:D140854C-7256-4087-B5B6-7836C9D50938]:32679] Error 1 setting Carplay mode to 0: Operation not permitted
error	09:21:13.573406-0700	backboardd	cycle detected between [73122-18] -> [73122-1]
error	09:21:13.573467-0700	backboardd	cycle detected between [73122-18] -> [73122-1]
error	09:21:13.577958-0700	backboardd	cycle detected between [73122-18] -> [73122-1]
error	09:21:13.578013-0700	backboardd	cycle detected between [73122-18] -> [73122-1]
error	09:21:13.627445-0700	SpringBoard	[(FBSceneManager):sceneID:com.apple.iMessageAppsViewService-default] updated settings were not derived from the scene's previous settings
error	09:21:13.630722-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(-1) returned -1 1 (Operation not permitted)
error	09:21:13.630744-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(0) returned -1 1 (Operation not permitted)
error	09:21:13.631200-0700	runningboardd	[xpcservice<com.apple.WebKit.GPU([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 223737757}[uuid:3B4E9DF6-7894-486A-918B-94D891189589]:32682] Memorystatus failed with unexpected error: Operation not permitted (1)
error	09:21:13.631515-0700	runningboardd	[xpcservice<com.apple.WebKit.GPU([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 223737757}[uuid:3B4E9DF6-7894-486A-918B-94D891189589]:32682] Memorystatus failed with unexpected error: Invalid argument (22)
error	09:21:13.645644-0700	runningboardd	[app<com.apple.iMessageAppsViewService((null))>:89181] pid_resume() returned error 1: Operation not permitted
error	09:21:13.654475-0700	SpringBoard	[(FBSceneManager):sceneID:com.apple.iMessageAppsViewService-default] updated settings were not derived from the scene's previous settings
error	09:21:13.658090-0700	com.apple.WebKit.WebContent	XPCServiceEventHandler: Received unexpected XPC event type: error
fault	09:21:13.658112-0700	com.apple.WebKit.WebContent	Exiting: Received XPC event type: XPC_ERROR_CONNECTION_INVALID
error	09:21:13.657654-0700	runningboardd	[xpcservice<com.apple.WebKit.GPU([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 223737757}[uuid:3B4E9DF6-7894-486A-918B-94D891189589]:32682] Error 1 setting Carplay mode to 0: Operation not permitted
error	09:21:13.738925-0700	runningboardd	[app<com.apple.iMessageAppsViewService((null))>:89181] pid_suspend() failed with error 1: Operation not permitted
error	09:21:13.827729-0700	com.apple.WebKit.Networking	nw_flow_notify [C1 Hostname#495e2082:443 cancelled parent-flow ((null))] ignoring notification replaced_output_handler after cancellation
error	09:21:13.828207-0700	com.apple.WebKit.Networking	quic_conn_change_current_path [C1.1.1.1:2] [-e04127f41d3f075d] tried to change paths, but no alternatives were found
error	09:21:13.828788-0700	com.apple.WebKit.Networking	nw_protocol_implementation_read [C1.1.1.1:2] Could not find path state for protocol 0x102c08e40
error	09:21:13.829447-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C1.1.1.1:2] No path found for 2b5c3a34ce72f62f
error	09:21:13.829493-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C1.1.1.1:2] No path found for 2b5c3a34ce72f62f
error	09:21:13.830027-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C1.1.1.1:2] No path found for 2b5c3a34ce72f62f
error	09:21:13.848206-0700	SpringBoard	[lock]	Snapshot attempt failed because preconditions failed:
error	09:21:13.848269-0700	SpringBoard	[lock]	--> 'Lock variant needs to be fully locked ((null)/(null))'
error	09:21:13.913171-0700	com.apple.WebKit.WebContent	dlsym cannot find symbol WKBundleInitialize in CFBundle 0x600003b002a0 </Library/Developer/CoreSimulator/Volumes/iOS_22E238/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 18.4.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/PlugIns/SafariServices.wkbundle> (bundle, loaded): dlsym(0x71ab71, WKBundleInitialize): symbol not found
error	09:21:13.913532-0700	com.apple.WebKit.WebContent	dlsym cannot find symbol WKBundleAdditionalClassesForParameterCoder in CFBundle 0x600003b002a0 </Library/Developer/CoreSimulator/Volumes/iOS_22E238/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 18.4.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/PlugIns/SafariServices.wkbundle> (bundle, loaded): dlsym(0x71ab71, WKBundleAdditionalClassesForParameterCoder): symbol not found
error	09:21:13.936284-0700	com.apple.WebKit.WebContent	Unable to filter tracking query parameters (missing data)
error	09:21:13.946393-0700	lsd	Error loading iCloud hosts plist from file:///var/mobile/Library/Caches/CloudKit/com.apple.cloudkit.launchservices.hostnames.plist: Error Domain=NSCocoaErrorDomain Code=260 "The file “com.apple.cloudkit.launchservices.hostnames.plist” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/var/mobile/Library/Caches/CloudKit/com.apple.cloudkit.launchservices.hostnames.plist, NSURL=file:///var/mobile/Library/Caches/CloudKit/com.apple.cloudkit.launchservices.hostnames.plist, NSUnderlyingError=0x600000c0ad00 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
error	09:21:13.947493-0700	lsd	Error loading iCloud hosts plist from file:///System/Library/CoreServices/com.apple.cloudkit.launchservices.hostnames.plist: Error Domain=NSCocoaErrorDomain Code=260 "The file “com.apple.cloudkit.launchservices.hostnames.plist” couldn’t be opened because there is no such file." UserInfo={NSFilePath=/System/Library/CoreServices/com.apple.cloudkit.launchservices.hostnames.plist, NSURL=file:///System/Library/CoreServices/com.apple.cloudkit.launchservices.hostnames.plist, NSUnderlyingError=0x600000c1b450 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}}
error	09:21:13.964719-0700	runningboardd	[osservice<com.apple.InputUI>:89184] pid_resume() returned error 1: Operation not permitted
error	09:21:13.977222-0700	SpringBoard	[setWindowContextID:focusContext:windowState:withLevel:] Rejecting update as the handle or its hosted services are not on screen: sceneIdentity: com.apple.frontboard.systemappservices/FBSceneManager:sceneID<decode: mismatch for [%3A] got [OBJECT public sz:55]>com.aridromos-default <_UIKeyboardArbiterClientHandle: 0x60000391b190; [app<com.aridromos((null))>:32124] <<UIKBArbiterClientFocusContext: 0x60000028c3a0; contextID = bb6391fd; sceneIdentity = com.apple.frontboard.systemappservices/FBSceneManager:sceneID<decode: mismatch for [%3A] got [OBJECT public sz:86]>com.aridromos-default >>; hosting PIDs {(
    32660
)}; level 0.000000; active YES [wants YES]; suppression 0; iav 0.000000; on screen NO; isAcquiringFocus: NO>
error	09:21:14.017535-0700	backboardd	cycle detected between [73122-18] -> [73122-1]
error	09:21:14.017591-0700	backboardd	cycle detected between [73122-18] -> [73122-1]
error	09:21:14.029045-0700	com.apple.WebKit.WebContent	[webFrameID=15, webPageID=12] WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction: Got policyAction 0 from async IPC
error	09:21:14.085871-0700	runningboardd	[osservice<com.apple.InputUI>:89184] pid_suspend() failed with error 1: Operation not permitted
error	09:21:14.141098-0700	com.apple.WebKit.Networking	quic_conn_change_current_path [C3.1.1.1:2] [-e60632c79e5d41d1] tried to change paths, but no alternatives were found
error	09:21:14.142599-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C3.1.1.1:2] No path found for a928e09a307ca836
error	09:21:14.142626-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C3.1.1.1:2] No path found for a928e09a307ca836
error	09:21:14.150033-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C3.1.1.1:2] No path found for a928e09a307ca836
error	09:21:14.170631-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(-1) returned -1 1 (Operation not permitted)
error	09:21:14.170648-0700	runningboardd	memorystatus_control error: MEMORYSTATUS_CMD_CONVERT_MEMLIMIT_MB(0) returned -1 1 (Operation not permitted)
error	09:21:14.170833-0700	runningboardd	[xpcservice<com.apple.WebKit.WebContent([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 71395982}[uuid:1DF4A2B1-C8A6-45B7-A8B9-965501E87D9E]:32683] Memorystatus failed with unexpected error: Operation not permitted (1)
error	09:21:14.170852-0700	runningboardd	[xpcservice<com.apple.WebKit.WebContent([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 71395982}[uuid:1DF4A2B1-C8A6-45B7-A8B9-965501E87D9E]:32683] Memorystatus failed with unexpected error: Invalid argument (22)
error	09:21:14.186979-0700	runningboardd	[xpcservice<com.apple.WebKit.WebContent([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 71395982}[uuid:1DF4A2B1-C8A6-45B7-A8B9-965501E87D9E]:32683] Error 1 setting Carplay mode to 0: Operation not permitted
error	09:21:14.279726-0700	com.apple.WebKit.Networking	nw_connection_copy_connected_local_endpoint_block_invoke [C7] Client called nw_connection_copy_connected_local_endpoint on unconnected nw_connection
error	09:21:14.279738-0700	com.apple.WebKit.Networking	nw_connection_copy_connected_remote_endpoint_block_invoke [C7] Client called nw_connection_copy_connected_remote_endpoint on unconnected nw_connection
error	09:21:14.279748-0700	com.apple.WebKit.Networking	nw_connection_copy_protocol_metadata_internal_block_invoke [C7] Client called nw_connection_copy_protocol_metadata_internal on unconnected nw_connection
error	09:21:14.280797-0700	com.apple.WebKit.Networking	quic_conn_change_current_path [C5.1.1.1:2] [-e522f39fc75510d3] tried to change paths, but no alternatives were found
error	09:21:14.281616-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C5.1.1.1:2] No path found for 25d544cc1e857203
error	09:21:14.281740-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C5.1.1.1:2] No path found for 25d544cc1e857203
error	09:21:14.287751-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C5.1.1.1:2] No path found for 25d544cc1e857203
error	09:21:14.302937-0700	com.apple.WebKit.WebContent	XPCServiceEventHandler: Received unexpected XPC event type: error
fault	09:21:14.412977-0700	com.apple.WebKit.WebContent	Exiting: Received XPC event type: XPC_ERROR_CONNECTION_INVALID
error	09:21:14.435036-0700	com.apple.WebKit.WebContent	dlsym cannot find symbol WKBundleInitialize in CFBundle 0x600003b042a0 </Library/Developer/CoreSimulator/Volumes/iOS_22E238/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 18.4.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/PlugIns/SafariServices.wkbundle> (bundle, loaded): dlsym(0xeab71, WKBundleInitialize): symbol not found
error	09:21:14.435094-0700	com.apple.WebKit.WebContent	dlsym cannot find symbol WKBundleAdditionalClassesForParameterCoder in CFBundle 0x600003b042a0 </Library/Developer/CoreSimulator/Volumes/iOS_22E238/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 18.4.simruntime/Contents/Resources/RuntimeRoot/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/PlugIns/SafariServices.wkbundle> (bundle, loaded): dlsym(0xeab71, WKBundleAdditionalClassesForParameterCoder): symbol not found
error	09:21:14.480391-0700	com.apple.WebKit.Networking	nw_connection_copy_connected_local_endpoint_block_invoke [C10] Client called nw_connection_copy_connected_local_endpoint on unconnected nw_connection
error	09:21:14.480402-0700	com.apple.WebKit.Networking	nw_connection_copy_connected_remote_endpoint_block_invoke [C10] Client called nw_connection_copy_connected_remote_endpoint on unconnected nw_connection
error	09:21:14.480413-0700	com.apple.WebKit.Networking	nw_connection_copy_protocol_metadata_internal_block_invoke [C10] Client called nw_connection_copy_protocol_metadata_internal on unconnected nw_connection
error	09:21:14.481060-0700	com.apple.WebKit.Networking	quic_conn_change_current_path [C8.1.1.1:2] [-e619724655a3360e] tried to change paths, but no alternatives were found
error	09:21:14.481426-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C8.1.1.1:2] No path found for faeb8f7ad074730c
error	09:21:14.481502-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C8.1.1.1:2] No path found for faeb8f7ad074730c
error	09:21:14.484401-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C8.1.1.1:2] No path found for faeb8f7ad074730c
error	09:21:14.611928-0700	com.apple.WebKit.Networking	nw_connection_copy_connected_local_endpoint_block_invoke [C13] Client called nw_connection_copy_connected_local_endpoint on unconnected nw_connection
error	09:21:14.611941-0700	com.apple.WebKit.Networking	nw_connection_copy_connected_remote_endpoint_block_invoke [C13] Client called nw_connection_copy_connected_remote_endpoint on unconnected nw_connection
error	09:21:14.611951-0700	com.apple.WebKit.Networking	nw_connection_copy_protocol_metadata_internal_block_invoke [C13] Client called nw_connection_copy_protocol_metadata_internal on unconnected nw_connection
error	09:21:14.612413-0700	com.apple.WebKit.Networking	quic_conn_change_current_path [C11.1.1.1:2] [-eb353119ef7e1d87] tried to change paths, but no alternatives were found
error	09:21:14.612819-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C11.1.1.1:2] No path found for def003565edd9dfb
error	09:21:14.612890-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C11.1.1.1:2] No path found for def003565edd9dfb
error	09:21:14.613677-0700	com.apple.WebKit.Networking	nw_connection_copy_connected_local_endpoint_block_invoke [C11] Connection has no local endpoint
error	09:21:14.613765-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C11.1.1.1:2] No path found for def003565edd9dfb
error	09:21:14.614336-0700	com.apple.WebKit.Networking	nw_flow_notify [C11 Hostname#495e2082:443 cancelled parent-flow ((null))] ignoring notification replaced_output_handler after cancellation
error	09:21:14.617109-0700	com.apple.WebKit.Networking	Task <1AEB4C0D-128A-482D-A1AB-3AF1A75E0202>.<2> finished with error [-1005] Error Domain=NSURLErrorDomain Code=-1005 UserInfo={_NSURLErrorNWPathKey=satisfied (Path is satisfied), interface: en0[802.11], uses wifi, NSErrorFailingURLKey=<private>, NSURLErrorFailingURLPeerTrustErrorKey=<private>, NSLocalizedDescription=<private>}
error	09:21:14.617214-0700	com.apple.WebKit.Networking	0x10e100000 - [pageProxyID=11, webPageID=12, frameID=15, resourceID=14, isMainResource=1, destination=3, isSynchronous=0] NetworkResourceLoader::didFailLoading: (wasServiceWorkerLoad=0, isTimeout=0, isCancellation=0, isAccessControl=0, errorCode=-1005)
error	09:21:14.617461-0700	com.apple.WebKit.Networking	nw_protocol_implementation_lookup_path [C11.1.1.1:2] No path found for def003565edd9dfb
error	09:21:14.629487-0700	SafariViewService	0x106852018 - [pageProxyID=11, webPageID=12, PID=32679] WebPageProxy::didFailProvisionalLoadForFrame: frameID=15, isMainFrame=1, domain=NSURLErrorDomain, code=-1005, isMainFrame=1, willInternallyHandleFailure=0
error	09:21:14.631390-0700	SafariViewService	Displaying webpage loading error to user: Error Domain=NSURLErrorDomain Code=-1005 "(null)", networkTaskDescription: Task <1AEB4C0D-128A-482D-A1AB-3AF1A75E0202>.<2>.
error	09:21:14.639544-0700	com.apple.WebKit.WebContent	Unable to hide query parameters from script (missing data)
error	09:21:14.653553-0700	runningboardd	[osservice<com.apple.InputUI>:89184] pid_resume() returned error 1: Operation not permitted
error	09:21:14.748425-0700	com.apple.WebKit.WebContent	Error: could not initialize m_originalArticleFinderJSController
error	09:21:14.763223-0700	runningboardd	[osservice<com.apple.InputUI>:89184] pid_suspend() failed with error 1: Operation not permitted
error	09:21:15.556314-0700	runningboardd	[xpcservice<com.apple.WebKit.WebContent([app<com.apple.SafariViewService((null))>:32660])>{vt hash: 71395982}[uuid:1DF4A2B1-C8A6-45B7-A8B9-965501E87D9E]:32683] pid_suspend() failed with error 1: Operation not permitted
error	09:21:18.255496-0700	managedappdistributiond	Simulator is not supported
error	09:21:19.601185-0700	pairedsyncd	Fatal error: pairing store path was nil for PSDFileManager.

So rigt after I post this I decide to try this on my real device an iPad and it seems to work… Not sure why its not working on the simulator… I have restarted it… maybe I need an entire computer restart at this point.