Milad-Akarie / auto_route_library

Flutter route generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

deepLinkBuilder Not working on Production

raaz0n opened this issue · comments

Here,

 deepLinkBuilder: (PlatformDeepLink deepLink) {
          if (deepLink.path.startsWith('/refer')) {
            return DeepLink([
              RegisterRoute(
                  referralCode:
                      deepLink.uri.queryParameters['referral_code'] ?? '')
            ]);
          } else {
            return DeepLink.defaultPath;
          }
        },

This is working on debug and release build but after it goes on Play Store this is not working. it always starts with the default path while clicking on the dynamic link

@raaz0n it sounds like you have a deep-link verification issue that has not nothing to do with flutter?