Not getting the link in deeplinking

Multi tool use
Not getting the link in deeplinking
I am implementing the deeplinking in my app.
I have enable the associated domain and has mark the domain entry.
Server has put the association file at the root level.
For example associated Domain is "abc.in" my app url schema is testSchema.
When user click on link https://abc.in/testLink.com my app is getting open , but in
- (BOOL)application:(UIApplication *)application
openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication
annotation:(id)annotation
method I am getting url as testSchema://. What could be the reason. I should get the url as "https://abc.in/testLink.com"
Unless and until testSchema://... url is hit, your app won't open. abc.in/testLink.com is hitting testSchema://abc.in/testLink.com internally.
– Sanket Bhavsar
6 hours ago
Enable the associated domain and mark the domain entry that is enough remove your testSchema settings from plist.
– vivekDas
6 hours ago
If i remove that. App is not getting launch.
– aashish nagar
5 hours ago
what's wrong if you get testSchema:// instead of https://?
– Sanket Bhavsar
4 hours ago
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
no need to set app url schema, remove that.
– vivekDas
6 hours ago