URL . Android-, , URL- , value, HTTPS URL-, . , URL- CATEGORY_LAUNCHER .
Android, URL .
<activity
android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</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="http" />
<data android:scheme="https" />
<data android:host="example.com" />
</intent-filter>
<meta-data
android:name="default-url"
android:value="https://www.example.com/index.html" />
</activity>
Instant applications do not support HTTP. Your default url should be https
For more information, you can check out the Android AIA documentation .
There is some inappropriate line for reporting an error whether you can provide a fix using the installable APK in alpha, beta, or using the same intent web host filter .
source
share