6

When I click on app link, it's showing me this screen

enter image description here

I was expecting the instant app to be opened directly. Any help would be appreciated

Viswanath Kumar Sandu
  • 2,230
  • 2
  • 17
  • 34

2 Answers2

1

Create App Links for Instant Apps:

If you've already followed the guides to Create Deep Links to App Content and Verify Android App Links, then you've already done most of the work necessary to make app links work with your instant app. There are just a couple extra rules when using app links for instant apps:

  • All intent filters used as app links in your instant app must support both HTTP and HTTPS. For example:

    <intent-filter>
         <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="www.example.com" />
         <data android:scheme="https" />
    </intent-filter>
    

For more: Follow this link.

After that, Change how you open instant apps from links.

Jamil Hasnine Tamim
  • 4,389
  • 27
  • 43
0

Google Play Help Change how you open instant apps from links states:

You can change your settings to open links into instant apps or websites. If you turn on “Upgrade web links,” and click certain links, the instant app may open and you’ll be able to use some of it’s features, without actually installing the full app. If the setting is turned off, the link will open in a website. Learn more about instant apps. [...]

Even when this setting is turned off, you can always continue to try instant apps by clicking on links that are Google Play branded. [...]

So it seems up to the user how to handle the links.

Community
  • 1
  • 1
tynn
  • 38,113
  • 8
  • 108
  • 143
  • 1
    If the "Upgrade web links" is disabled, it'll directly open up the browser. If it's enabled, then it is showing this screen. Ideally, this screen shouldn't come – Viswanath Kumar Sandu May 26 '20 at 12:15