I have an already published Instant App in Google Play Store, and I have migrated it to Navigation Components.
I have removed the intent filter from the manifest as the Navigation Components adds them for you. However, Google Play is showing me this error:
The default URL “https://example.com” is not mapped to your Instant application
This is my previuos intent filter:
<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="example.com"
/>
</intent-filter>
And this is the generated manifest after adding material components navigation:
What is causing the Google Play error?