We have an iOS shell App which needs to support a universal link to the page like this -
https://example.com/#/game/home
It keeps breaking. For example , If I click on this link from a email client , It removes the characters after # and takes me to the page https://example.com
Any help on how should i design my AASA files to support this?
samples :
example 1 : did not work
{ "applinks": { "apps": [],
"details": [{
"appID": "ASDF35SDF.ios.mybundle.com",
"components": [{
"/": "/#/courses/*/home"
}]
}]
}
}
example 2 : did not work
{ "applinks": { "apps": [],
"details": [{
"appID": "ASDF35SDF.ios.mybundle.com",
"components": [{
"/": "/*/courses/*/home"
}]
}]
}
}