I need your help to fix a problem with an intent filter that launches the activity after clicking a URI that looks like this https://myapp.com/#/path1/path2. Is there a way to escape hashtag signs when creating a path pattern?
I’ve tried /\\#/ , /%23/ and /.*/ without success.
Is there a way to override the default UriMatcher?