我已遵循此文档https://rnfirebase.io/docs/v4.1.x/links/android并能够运行adb shell am start -W -a android.intent.action.VIEW -d "https://abc123.app.goo.gl" com.myapp.superapp
以启动应用程序。
如何打开动态链接https://abc123.app.goo.gl
它打开VideoScreen
并通过contentparam
Video:{
screen : VideoScreen,
path:'wvc/:contentparam',
}
所以我在点击https://abc123.app.goo.gl(动态链接)时尝试了这个:
componentDidMount () {
Linking.getInitialURL().then((url) => {
console.log('Initial url is: ' + url);
}).catch(err => console.error('An error occurred', err));
}
然而应用程序打开但console.log
给出null