我已经在flutter app -> android -> src -> main -> androidmanifest.xml中添加了这段代码,但现在仍然可以工作
<!-- Intent filter for handling deep links -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "https://www.example.com/gizmos" -->
<data
android:scheme="https"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
</intent-filter>
字符串
添加此后仍然不工作
2条答案
按热度按时间vnjpjtjt1#
确保Intent过滤器位于要处理深层链接的标签内。它应该嵌套在标签内,而不是AndroidManifest.xml中的任何位置。
字符串
ffscu2ro2#
你必须首先将“uni_links”包添加到项目中:
字符串