Our old app (built with Xcode 11, running on iOS 13) has working universal links, that open our web links in our app.
When we run the app on iOS 14 universal links to not trigger our app.
Background:
We have added a second site association file to our site at the following location:
https://www.example.com/.well-known/apple-app-site-association
Our site association file looks like this:
{
		"applinks": {
				"apps": [],
				"details": [
						{
								"appID": "id.example.com.appName",
								"paths": [
										"/m/sprockets/*",
										"/sprockets/*"
								],
								"appIDs": [
										"id.example.com.appName"
								],
								"components": [
										{
												"/": "/m/sprockets/*"
										},
										{
												"/": "/sprockets/*"
										}
								]
						},
						{
								"appID": "id2.example.com.appName2",
								"paths": [
										"/m/bolts/*",
										"/bolts/*"
								],
								"appIDs": [
										"id2.example.com.appName2"
								],
								"components": [
										{
												"/": "/m/bolts/*"
										},
										{
												"/": "/bolts/*"
										}
								]
						},
						{
								"appID": "id3.example.com.appName3",
								"paths": [
										"/lights/*"
								],
								"appIDs": [
										"id3.example.com.appName3"
								],
								"components": [
										{
												"/": "/lights/*"
										}
								]
						}
				]
		}
}
Any idea how to troubleshoot this? Anyone else experiencing this?
Selecting any option will automatically load the page