我们的应用程序应该在company:// upload上提供。我创建了itent-filter:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="company"
android:host="upload" />
</intent-filter>
它正在打开应用程序,但在反应本机内部我无法捕获该URL。我的实施:
componentWillMount() {
Linking
.getInitialURL()
.then(event => this.handleOpenURL(event))
.catch(console.error);
Linking.addEventListener('url', this.handleOpenURL);
this.props.loadCredentials();
}
handleOpenURL(event) {
console.log(event);
switch (event.url) {
case `${Config.APP_SCHEMA}upload`:
Actions.Upload();
break;
default:
Actions.Home();
}
}
router.js
,这是第一个React组件。 版本:
"react-native": "0.42.0",
Android SDK 23
答案 0 :(得分:0)
我写了一个用于测试深层链接的脚本:
adb shell am start -W -a android.intent.action.VIEW -d "company://$1" com.companyapps/.MainActivity
深层链接是正确的,问题在于我的应用程序的Java部分。