我已按照 android 文档Here中的步骤在我的应用程序中实现链接。我真的不需要任何花哨的参数传递,我想要的只是当用户单击我的应用程序打开的浏览器上的链接时。我所做的只是修改我的 AndroidManifest。这是相关部分
<application
android:name=".MainApplication"
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter android:label="filter_react_native">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="u2player" android:host="open.my.app" />
</intent-filter>
</activity>
我正在使用 react-native-navigation 并尝试从 chrome 浏览器或本机浏览器浏览到任何一个u2player://
u2player://open.my.app
u2player://open.my.app/
都不起作用。我还绑定了url
来自链接模块的事件,但没有任何效果。我重新启动,卸载等。
帮助表示赞赏