App links open perfectly but only issue is I have to set the url by clicking on add link and there in options that url is already present and i need to add that manually
Here is the code for deep link in android manifest file
<meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
<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" android:host="abc.myurl.com" />
<data android:scheme="https" />
</intent-filter>
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
Below is my assetLink.json's code
[{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.myapp.myapp",
"sha256_cert_fingerprints": ["----myapp fingerprint-----"]
}
}]