我正在尝试通过反应导航在expo应用程序中实现动态深层链接。
我已在app.json中添加架构为:
"scheme": "notifications",
当我跑步时:
adb shell am start -W -a android.intent.action.VIEW -d "notifications://main/home/join_event/35" com.myapp
深层链接可以正常工作,但是当我从屏幕内部(即通过编写启动屏幕)完成
const url = Linking.makeUrl(`main/home/join_event/35`);
Linking.openURL(url);
它显示了博览会错误屏幕,说它可以导航到该路径。