demo · v140

Manifest Builder

The API only finds apps that have a verified association with your origin. Build the related_applications manifest entries and the per-platform asset-link files in one place — and see what the API will return when each is set up correctly.

related_applications entries

manifest.webmanifest


        

verification artifact


      
// manifest.webmanifest
{
  "related_applications": [
    { "platform": "play",
      "id":      "com.example.app",
      "url":     "https://play.google.com/store/apps/details?id=com.example.app" },
    { "platform": "windows",
      "id":      "9NBLGGH4ABC1!App" }
  ],
  "prefer_related_applications": false
}

// Verified by:
//  play  → Digital Asset Links at /.well-known/assetlinks.json
//  itunes → Apple App Site Association at /.well-known/apple-app-site-association
//  windows → packaged manifest's Identity element pointing back to your origin

see also