我正在應用程序中工作。需要創建一個深層鏈接。用戶可以共享特定項目,用戶可以從點擊鏈接打開直接頁面。我按照enter link description here如何在應用中創建深層鏈接?
<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>
但是當我把鏈接到瀏覽器然後它不工作。
什麼是鏈接,你點擊瀏覽器? –
感謝您回覆@Eric。我有這樣的網址:jobzminer:// appplay – Suman
更改您的網址爲:「https:// www.jobzminer.com/appplay」,它將起作用。 –