You should have at least one active APK that is mapped to site 'sample.com' via a web 'intent-filter'

后端 未结 4 956
深忆病人
深忆病人 2020-12-19 10:59

Trying to upload instant application but getting this error

You should have at least one active APK that is mapped to site \'sample.com\' via a web \'

4条回答
  •  无人及你
    2020-12-19 11:39

    Your app must also define a default URL for your app. Within the same Android manifest as your entry-point activity, you define the default URL for your app by adding a element with a value attribute that provides a valid HTTPS URL that the activity can handle. Further, this default url must also be part of the CATEGORY_LAUNCHER activity's intent filter in the installed app.

    The following code snippet shows an Android manifest that defines an entry-point activity and default URL for an instant app.

    
        
          
          
        
        
          
          
          
          
          
          
        
        
    
    

    Instant apps does not support HTTP. Your default-url should be HTTPS

    For more details can you check android AIA documentation.

    There is some inappropriate string for error message, can you ensure fix with, installable APK in alpha, beta or production with same HOST web 'intent-filter'.

提交回复
热议问题