I have implemented Universal Links using Xcode version 10.x.x and it's was working fine with wildcards. but after a few times it's stopped working. I don't know what is the reason for stopping.
applinks:*.mydomain.com -> Does not work
applinks:demo.mydomain.com -> work fine
My AASA config file
	 "applinks":{
			"apps":[
			],
			"details":[
				 {
						"appID":"ABCDE12345.com.example.app",
						"paths":[
							 "/tickets/*"
						]
				 }
			]
	 }
}
Please tell me why stopped working with wildcards?? what needs to be changed??