You can configure universal links with Strategy Mobile and Library SDK for iOS.
apple-app-site-associationfile that contains JSON data about the URLs that your app can handle. In this example, we use
env-149760.customer.cloud.Strategy.comas our domain,
com.Strategy.ipadas our appID, and
5S85L38CPJas our appPrefix. The corresponding JSON file is shown below.
"applinks": {"apps": [],
"details": [{"appID": "5S85L38CPJ.com.Strategy.ipad",
"paths": ["*"]
}
]
}
}
apple-app-site-associationfile to your HTTPS web server. You can place the file at the root of your server or in the
.well-knownsubdirectory.


NSUserActivityobject. If there is no need to customize behavior when tapping the website URL, you don't need to do anything else since this is handled internally. If you want to customize your own logic, you may need to override
application:continueUserActivity:restorationHandler:in UIApplicationDelegate.
See Support Univeral Links from Apple to learn more about using universal links in an iOS project.