我在应用程序中工作。需要创建一个深层链接。用户可以分享特定的项目,用户可以从点击链接打开直接页面。我按照在此处输入链接描述
<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="www.jobzminer.com"
android:pathPrefix="/appplay" />
<data android:scheme="jobzminer"
android:host="appplay" />
</intent-filter>
但是当我将链接放入浏览器时,它不起作用。