Instantapp Not Being Launched When Clicking On Link
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 'try now' after fix
Solution 1:
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.
- One thing that I notice is that even after published, wasn't working instantly, since I had a weekend when I tried on Monday was working, so apparently there is also some indexing time from the GooglePlay.
My test app is on Internal Testing and is working.
Post a Comment for "Instantapp Not Being Launched When Clicking On Link"