我正在尝试使用以下方式处理应用程序中的深层链接:-
findNavigationController.handleDeepLink(intent)
这不是导航到任何页面。
这是我创建意图的方式:-
val deepLinkIntent = Intent()
val deeplink = "https://myapp.com/myscreen"
deepLinkIntent.data = Uri.parse(deeplink)
findNavigationController.handleDeepLink(deepLinkIntent) // this returning false
我做得对吗?如果不是,那么处理应用内深层链接的正确方法是什么(我需要为一些内部促销卡处理)?