I am having some problem creating an apple-app-site association file. I do not know how to create a json file without json extentsion and have a content type application/jsonfor the same file. I want to use this file without any signing, since it is not needed in iOS 9, but I could not create the apple-app-site association file file.
I installed everything in my application, for example, related domains, application delegation method, provisioning profiles.
Here is my server side code:
{
"applinks": {
"apps": [],
"details": [
{
"appID": "teamID.bundleID",
"paths": [ "*" ]
}
]
}
}
source
share