首页 > 解决方案 > 如何在android applink pathprefix中排除一些url

问题描述

意图

<intent-filter android:autoVerify="true">
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <category android:name="android.intent.category.BROWSABLE" />
          <data
          android:scheme="https"
          android:host="url.com" 
          />
        </intent-filter>

网站 URL 如下所示

url.com/usernames  //website users username open in app
url.com/brand/..  //open in app
url.com/data/.. // open in app


url.com/about/.. // exclude
url.com/privacy/..// exclude

我怎样才能设法不使用该应用程序打开某些 URL?

标签: androidflutterandroid-manifest

解决方案


推荐阅读