我正在创建反应原生的Android应用程序。我的应用程序在本地系统上未上传到实时服务器上。我使用CustomTabs打开外部URL。我想从外部网址重定向到应用程序。我已经对AndroidManifest.xml进行了更改: -
<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:host="mywebsite.com"
android:scheme="http"
android:path="/index">
</data>
</intent-filter>
并将其添加到我的外部网址:
<a href="intent://mywebsite.com/index#Intent;package=com.myapp;scheme=http;end;"/>click</a>
当我点击它重定向到商店时。我希望它重定向到我的应用程序,即我的本地系统。我如何添加网址,因为应用程序在本地系统上。有没有办法做到这一点??
答案 0 :(得分:0)
您需要在意图过滤器中添加这些参数:
<data android:pathPattern="/Android" />
这意味着您可以使用以下方式指导用户:
window.location = "/Android";
这应该对您有用,请同时查看link