The title basically says it all, but maybe I can go into more details. Just running the app for the first time and trying to open it with a set deep link doesn't work. The link is opened in a browser. But if I go into the app's setting/Open by default and add the link manually, clicking on a deep link now opens my app. I've only tested this with a debug version of the app. Could this be an issue?
My intent filter in the manifest:
<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="${deepLinkHost}"
android:pathPrefix="/deeplink/"
android:scheme="https" />
</intent-filter>