Android NavController.handleDeepLink()不工作

Android NavController.handleDeepLink()不工作,android,deep-linking,navigation-architecture,Android,Deep Linking,Navigation Architecture,我正在尝试使用以下方法处理应用程序中的深层链接:- findNavigationController.handleDeepLink(intent) 它没有导航到任何页面 以下是我创建意图的方式:- val deepLinkIntent = Intent() val deeplink = "https://myapp.com/myscreen" deepLinkIntent.data = Uri.parse(deeplink) findNavigationController.handleDee

我正在尝试使用以下方法处理应用程序中的深层链接:-

findNavigationController.handleDeepLink(intent)
它没有导航到任何页面

以下是我创建意图的方式:-

val deepLinkIntent = Intent()
val deeplink = "https://myapp.com/myscreen"
deepLinkIntent.data = Uri.parse(deeplink)
findNavigationController.handleDeepLink(deepLinkIntent) // this returning false
我做得对吗?如果不是,那么处理应用程序内深度链接的正确方法是什么(我需要处理一些内部促销卡)