My test app is published in a test closed track in Google Play (alpha) - but I\'ve also tried with Internal Testing, the same result.
It already shows the button &quo
While searching for an answer I tried to find something from the devs of the apps that I saw this feature working. I found this article and I notice only two differences from what I was doing:
android:order="1"
, I never used so I looked to see what does and as far as I understood, in case of deep link that can be access by multiples apps this can give "priority" to yours. The default value is 0.
android:pathPattern="/item/.*"
I was using "android:pathPrefix" on mine without .* in the end. Since my url also has params I decided to try this modification.
My test app is on Internal Testing and is working.