Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Icon not coming in google search autocomplete

I have implemented the AppIndexing API. I am getting the search auto completion and it is working as expected. But the app icon is not available. Today I updated the google search app on my phone and since then the app icon is not coming . Checkout the screenshot at http://i.stack.imgur.com/ckpGj.jpg

like image 229
mohan mishra Avatar asked Sep 11 '15 09:09

mohan mishra


Video Answer


1 Answers

Check if you have defined your icon app in the manifest.xml inside your application tag:

android:icon="@mipmap/ic_launcher"

I was having the same issue in an early version of my app and was fixed as soon as I added my launcher icon (the app uses an Android bot icon by default as launcher icon if nothing is provided within the application tag, but not for the AppIndexing Api).

like image 75
rolgalan Avatar answered Oct 19 '22 00:10

rolgalan