MMP Dashboard

Deep Links

Configure Universal Links, App Links, and custom URI schemes

iOS Universal Links

Configure apple-app-site-association for seamless deep linking on iOS

{
  "applinks": {
    "apps": [],
    "details": [
      {
        "appIDs": [
          "ABCDE12345.com.tekiestech.shopease"
        ],
        "components": [
          {
            "/": "/product/*",
            "comment": "Product deep links"
          },
          {
            "/": "/category/*",
            "comment": "Category deep links"
          },
          {
            "/": "/promo/*",
            "comment": "Promotional deep links"
          }
        ]
      }
    ]
  }
}

Host this file at: https://yourdomain.com/.well-known/apple-app-site-association

Android App Links

Configure Digital Asset Links for verified deep linking on Android

[
  {
    "relation": [
      "delegate_permission/common.handle_all_urls"
    ],
    "target": {
      "namespace": "android_app",
      "package_name": "com.tekiestech.shopease",
      "sha256_cert_fingerprints": [
        "14:6D:E9:83:C5:73:06:50:D8:EE:B9:95:2F:34:FC:64:16:A0:83:42:E6:1D:BE:A8:8A:04:96:B2:3F:CF:44:E5"
      ]
    }
  }
]

Host this file at: https://yourdomain.com/.well-known/assetlinks.json

Custom URI Scheme

Define a custom URL scheme for your app (fallback for older devices)

://

Example: shopease://product/12345

shopease://product/12345
shopease://category/electronics