Googling found a solution to the error in the manifest:

App is not indexable by Google Search; consider adding intent-filler activity with an ACTION-VIEW. See issue explanation for more details.

Need to add a link to the site:

<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" android:pathPrefix="/gizmos" /> <data android:scheme="example" android:host="gizmos" /> 

But one thing is not clear what the prefix means?

 android:pathPrefix="/gizmos" 

    3 answers 3

    This means that not all links to www.example.com will be filtered, but only those whose path begins with "/ gizmos":

    http://www.example.com/gismos/bla/bla.html

    • And without it, you can, without a prefix? - DevOma

    if there is no particular desire or need to fool around with deeplink, you can add a line to the manifest

     tools:ignore="GoogleAppIndexingWarning" 

      I found this solution in the English language stackoverflow - GizmosActivity is written there in the header - I suspect that this is the name of the developer, that's all.

      • Your answer is not the answer to a question or a solution to a problem, but I think that it would be a good idea to comment as a comment - Max