Open
Description
Hi, I have the following urls:
https://www.mycompany.com/products/abc/def/2
https://www.mycompany.com/products/test
Is it possible to create an entry for an activity that would handle both urls?
Something like this:
https://www.mycompany.com/products/{dynamic}
Where dynamic
could contain slashes and using bundle.getString("dynamic") would return "abc/def/2" for the first example and "test" for the second example.
I have thought creating two entries, one for each example, however, in the future more may exist, so I wonder if it is possible to use dynamic entries.