InstantApp not being launched when clicking on link

Viewed 907

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 fixing the missing default-URL. assetlinks.json placed on my server in the right place. The App Links Assistant process fully configured.

I can't release my app publicly yet.

My instant app link looks something like this: https://my.host/my/path?paramA=1

On my Instant module manifest i declared:

            <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data
                    android:scheme="http"
                    android:host="my.host"
                    android:pathPrefix="/my/path"/>
                <data
                    android:scheme="https"/>
            </intent-filter>
            <meta-data
                android:name="default-url"
                android:value="https://my.host/my/path" />

I've followed the google play opt-in to become a tester of my own app.

I'm fairly confident I've integrated it correctly because:

  • If I click on try now from the Google Play page my instant app will open (and Android will keep it in cache). If I then open the link (for example from an email), it works fine: opens the instant experience as I expect (probably because it is in the cache).

  • If I have the full app installed opening the link works fine: opens the app where it should go.

But...

  • If I never opened the instant (removed from the cache on the device) nor have the app installed, opening the link does not bring me to the instant app (should load the instant app from the GooglePlay since you don't have it) instead it brings me to the website.

Does anyone has any idea or know of any additional step not mentioned in the official doc?

InstantApps version com.google.android.gms:play-services-instantapps:17:0.0

extra info, the option on Google Play for instant apps is on and I already tried turning off and back on.

If you think I omitted important details please comment my question and I'll try to add them

Thanks.

2 Answers

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:

  1. 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.

  2. 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.

I had the same problem, and it was because I didn't have android:targetSandboxVersion="2" in my application tag.

Related