<meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
<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="https"/>
<data android:host="flutterbooksample.com"/>
</intent-filter>
使用深层链接打开应用程序默认值,但它打开浏览器默认值
在Android 11或更低版本中,它的工作原理是我们所期望的,在Android 12中,它只打开浏览器作为默认
1条答案
按热度按时间dgtucam11#
如果您的深层链接URL类似
https://abc.page.link/services
其中
services
是深线页面将
<data android:host="example.host"/>
更改为<data android:host="abc.page.link"/>
确保重新启动应用程序。