Upload failed
You should use both http and https as schemes for your web intent-filters.
I am getting this error while uploading the instant app to Play Store. I have declared intent filters for both http and https in Manifest as below.
<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:scheme="http"
android:host="XXXX" />
</intent-filter>
<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:scheme="https"
android:host="XXXX" />
</intent-filter>
Could you please let me know what could be wrong and why i am getting this error while uploading to Play Store ?