私はアプリで働いています。ディープリンクを作成する必要があります。ユーザーは特定のアイテムを共有でき、ユーザーはクリックリンクから直接ページを開くことができます。私は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にお返事いただきありがとうございます。私はこのようなURLを持っています:jobzminer:// appplay – Suman
あなたのURLを 'https:// www.jobzminer.com/appplay'に変更すれば動作します。 –