I want to ask does android URI path segments support question marks? I have a url in the format
www.blah.com/test?foo=123
the matcher is something like
<data android:pathPattern="/test.*"/>
The URI returned is www.blah.com/test?foo=123
but when I call uri.lastPathSegments
it only returns test
and cuts off ?foo=123