I am having problems trying to match '#' character for Universal Link file (apple-app-site-association).
For an URL like domain/#/results/parameters I've been trying with:
But none of them worked for me.
The annoying point is the two first matches the almost equal URL domain/a/results/parameters (whatever character instead #)
How can I match the #?
Regards
@salazar, Finally Apple has heard our queries. Now you can specify fragments in the form of components from iOS 13
The apple-app-site-association structure is changed like this,
"applinks": {
"details": [
{
"appIDs": [ "TeamID.com.example.myapp"],
"components": [
{
"/": "/path/#mypath/*",
"#": "*fragment"
}
]
}
]
}
}
You can find more information about universal linking here - https://developer.apple.com/videos/play/wwdc2019/717/
Note - The documentation is not updated yet at the time of writing this answer.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With