このドキュメント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