0

Following image shows what my app setting looks like

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 When clicked on Add links button

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-----"]
  }
}]
  • Maybe the issue is related to hosting the assetlink.json file as I might have uploaded the keys of the app in developer mode. I will try and update if it works with release mode keys. If there is any other potential issue, please let me know – Ashish Tandon Aug 18 '23 at 09:42

0 Answers0