I am getting following tool tip in AndroidManifest.xml
App is not indexable by Google Search; consider adding at least one Activity with an ACTION-VIEW intent-filler. See issue explanation for more details.
Adds deep links to get your app into the Google index, to get installs and traffic to your app from Google Search.
Any one can explain why it is so?
Your Help would be appreciated.
You can remove the warning by adding the below code in
<intent-filter>
inside<activity>
You can remove the warning by adding
xmlns:tools="http://schemas.android.com/tools"
to the<manifest>
tag andtools:ignore="GoogleAppIndexingWarning"
to the<application>
tag.From official documentation :
Using this link Enabling Deep Links for App Content you'll see how to use it.
And using this Test Your App Indexing Implementation how to test it.