Custom Domain deeplink

My SampleApp, named "myApp," already supports deep links such as "https://myApp.com/tab/record/10020." When this link is clicked, it navigates to myApp, and AppDelegate handles the further process. Now, I need to support another link (domain), "https://appcloud.com/tab/record/10020," so that clicking this link also navigates to myApp.

Is there any way to solve this kind of problem without adding "apple-app-site-association"?

Answered by Vision Pro Engineer in 790753022

Hi @Ajith_karuna ,

You'll need to host an AASA file at each domain that you'd like to support, as well as having this in your associated domains: applinks:appcloud.com, applinks:myApp.com

More info is here: https://developer.apple.com/documentation/technotes/tn3155-debugging-universal-links

Hi @Ajith_karuna ,

You'll need to host an AASA file at each domain that you'd like to support, as well as having this in your associated domains: applinks:appcloud.com, applinks:myApp.com

More info is here: https://developer.apple.com/documentation/technotes/tn3155-debugging-universal-links

Custom Domain deeplink
 
 
Q