ios – Go exception: No routes for location error

ios – Go exception: No routes for location error


I get the next error: GoException: no routes for location: com.googleusercontent.apps.1052157635-94tcrdep4q1r9g3gvi5dvllrejmali://firebaseauth/hyperlink?deep_link_id=httpspercent3Apercent2Fpercent2Ftonns-a06e3.firebaseapp.compercent2F__percent2Fauthpercent2Fcallbackpercent3FauthTypepercent3DsignInWithRedirectpercent26linkpercent3Dhttpspercent253Apercent252Fpercent252Ftonns-a06e3.firebaseapp.compercent252F__percent252Fauthpercent252Fhandlerpercent253Fstatepercent253DAMbdmDlHduq-oYEjfP-Iey_XlGlyF61HK5tRsirFPGToxun0b165nOXoI51r9kzyUqaKTEpMiVtopoFLf6Ew6EvqJq0_VB4WY4_gxGLf4aRdLZ__KyW5S9FAY2l3bprsJwRe1iZXcZRxuBWLHNoMBw8Iu_P5mrsdxwXACiggwXTDEqagN5LDQ1ucxGs0SFJ4H4nHOmxmhHv0GrQrcDASHXhJZq3hJRLWAouW2Rn7Pq9nf-XOPsZ9R7nqOicBYG5go1BxAtvqBr_BbcEdbpvb_iprWGYL-RP0h9UdYeHYEhG6WhA1veuzBq0d3lirXYzbumylCyW4mTzJzdvIn9RR0TBF8mcyN_6WYvgLZhAt96b2UxG0Z4_6lwpercent2526codepercent253D4percent25252F0AeanS0YosOSB-cJCOyK9e7ttvob8I1stlJRbqo7leg_5gK2FqtSZ2Sjn9v-rriDL7mnrYQpercent2526scopepercent253Demailpercent252520openidpercent252520httpspercent25253Apercent25252Fpercent25252Fwww.googleapis.compercent25252Fauthpercent25252Fuserinfo.emailpercent2526authuserpercent253D0percent2526promptpercent253Dnonepercent26eventIdpercent3DTYKPLUZAAI. 
My gorouter for firebase auth hyperlink is outlined as follows: 
   GoRoute(
        path: '/firebaseauth/hyperlink',
        builder: (BuildContext context, GoRouterState state) {
          debugPrint('Firebase Auth Hyperlink');
          last queryParams = state.uri.queryParameters;

          if (queryParams.containsKey('error')) {
            return const ErrorPage();
          } else {
            return AuthWall(
              buildSuccessScreen: (_) {
                return Container();
              },
              screenTitle: StringConfig.login.title,
              screenDescription: StringConfig.login.screenDescription,
            );
          }
        },
      ), 
Why do I get this error? My data.plist file is as follows: 




    CADisableMinimumFrameDurationOnPhone
    
    CFBundleDevelopmentRegion
    $(DEVELOPMENT_LANGUAGE)
    CFBundleDisplayName
    tonns
    CFBundleExecutable
    $(EXECUTABLE_NAME)
    CFBundleIdentifier
    $(PRODUCT_BUNDLE_IDENTIFIER)
    CFBundleInfoDictionaryVersion
    6.0
    CFBundleName
    XXXX
    CFBundlePackageType
    APPL
    CFBundleShortVersionString
    $(FLUTTER_BUILD_NAME)
    CFBundleSignature
    ????
    CFBundleVersion
    $(FLUTTER_BUILD_NUMBER)
    FlutterDeepLinkingEnabled
    
    LSRequiresIPhoneOS
    
    NSCameraUsageDescription
    We want entry to your digital camera to take pictures and movies.
    NSLocationAlwaysAndWhenInUseUsageDescription
    We want your location to supply higher providers each within the foreground and background.
    NSLocationAlwaysUsageDescription
    We want your location to supply higher providers even when the app is within the background.
    NSLocationWhenInUseUsageDescription
    We want your location to supply higher providers.
    NSMicrophoneUsageDescription
    We want entry to your microphone to file audio throughout classes.
    NSPhotoLibraryAddUsageDescription
    We want entry to your photograph library to save lots of pictures.
    NSPhotoLibraryUsageDescription
    We want entry to your photograph library to save lots of and entry pictures.
    NSUserNotificationAlertStyle
    Alert
    UIApplicationSupportsIndirectInputEvents
    
    UIBackgroundModes
    
        fetch
        location
        remote-notification
    
    UILaunchStoryboardName
    LaunchScreen
    UIMainStoryboardFile
    Important
    UISupportedInterfaceOrientations
    
        UIInterfaceOrientationPortrait
        UIInterfaceOrientationLandscapeLeft
        UIInterfaceOrientationLandscapeRight
    
    UISupportedInterfaceOrientations~ipad
    
        UIInterfaceOrientationPortrait
        UIInterfaceOrientationPortraitUpsideDown
        UIInterfaceOrientationLandscapeLeft
        UIInterfaceOrientationLandscapeRight
    

    
    CFBundleURLTypes
    
        
            CFBundleTypeRole
            Editor
            CFBundleURLSchemes
            
                com.googleusercontent.apps.105XXX3657635-94tcrdep4q1r9g3gvi8b5dvllrejmali
            
        
    


Is the go router outlined appropriately? Does that should be modified?
Is the go router outlined appropriately? Does that should be modified?
Is the go router outlined appropriately? Does that should be modified?
Is the go router outlined appropriately? Does that should be modified?
Is the go router outlined appropriately? Does that should be modified?

Leave a Reply

Your email address will not be published. Required fields are marked *