I have a question about the way that a declared intent-filter
for some page example.com/pageB
in AndroidManifest.xml
would work in the following scenario:
example.com/pageA
that is not declared in an intent-filter
.example.com/pageB
. The new
page matches the intent-filter
declared in the app's AndroidManifest.xml
Will the OS launch the app to handle the intent the same way it would have if the user directly clicked on a link to example.com/pageB
?
The OS does not distinguish between the redirect to example.com/pageB
and the user clicking on a link to that page so the intent filter works as expected.