<intent-filter android:label="@string/app_name" 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="http"
android:host="mydomain.com"
android:pathPrefix="/path" />
</intent-filter>
I set android Manifest
like above for Firebase App-Indexing.
It works well.
But when user visit my domain with internet browser and click something on my content(eg. "mydomain.com/path?key=100"), my app is opened.
Because I have set like that. It's very annoying.
My intention is I want to lead to my app but not from my website. User is already in my website. I don't want to disturb them.
How can I prevent opening app only from my website?