I am adding Password autofill feature to my iOS app. when I asked other developer who handles backend to place the apple-app-site-association file in the root directory of web server, he told me that the file can't be accessed directory from the root url because of the routing applied on the project. instead he says you can use following Url.
https://sv2.example.com/src/assets/apple-app-site-association
sv2.example.com is my root directory. Now what can I do. Is there any way apple can access it through above url?screenshot of associated domain capability in Xcode
{
"webcredentials": {
"apps": [
"TeamID.BundleId1",
"TeamID.BundleId2",
"TeamID.BundleId3"
]
}
}
this is my apple-app-site-association file's content. Any help would be appreciated. Thank you.
Edit: I am using apple's Password Autofill Framework for this.