Intent-filters getting mixed up #134
Unanswered
alexboulay
asked this question in
Q&A
Replies: 1 comment
-
Good question... You will probably be better off asking on StackOverflow, actually. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
So my app supports Android AppLinks, so a user can open
https://example.com/some-route
and get inside the app.Here is the
intent-filter
inside my main activity:As you may observe, the host is specified and no path, pathPattern or pathPrefix are specific so any links can open this.
On the other hand, the
intent-filter
related toflutter_web_auth_2
does have specificity using a pathPrefix:I am wrong with this approach? It seems like even the specific url still opens my default activity and the callback activity gets ignored. The only way to get it working is removing the intent-filter inside my app or make that one specific.
Any guidance or clarification is appreciated on how I can achieve this! Thanks!
Beta Was this translation helpful? Give feedback.
All reactions