Deep Linking with iOS in Development

I’ve followed the guide here: Deep Links | Capacitor Documentation

The guide is great if you are going straight to production, but I need to validate this capability in a development environment. The guide doesn’t really explain which parts you should change to have this working on a development environment. I’ll put some code below, but I am not sure what should be changed since my app com.company.app.dev is running in my dev environment localhost:3000.

app/public/.well-known/apple-app-site-association

{
  "applinks": {
    "apps": [],
    "details": [
      {
        "appID": "TEAMID.com.company.app.dev",
        "paths": ["*"]
      }
    ]
  }
}

Associated Domains
applinks:example.com

Really lost here since the guide just uses the same production domain for everything.

hi darce
im kinda having the same problem but for production app

its not working basically. i followed that guide too

info.plist

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
	<dict>
...
<key>com.apple.developer.associated-domains</key>
		<array>
				<string>applinks:my.link.com</string>
		</array>
	</dict>
</plist>

.well-known/apple-app-site-association

{
        "appID": "QQQV1Q1QEQ.ar.my.bundle.id",
        "paths": ["*"]
}

what i am doing wrong?
i had the associated domains active in apple dashboard.
i had checked AASA validator and everything ok

i generate an .ipa with appflow with store certificates and then i prove with testflight and browser stack and not works

any idea?