我在我的应用程序中为Facebook和Twitter使用了深层链接功能。清单文件中以下各行的前面曾为我提供了在应用程序中打开链接的选项,但目前它正在重定向到浏览器。以下是我的清单
<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="example.com"
android:pathPrefix="/prefis"
android:scheme="https" />
</intent-filter>
答案 0 :(得分:0)
在浏览器中检查网址,并根据您应用中的教程添加深层链接 https://developer.android.com/training/app-links/deep-linking#adding-filters