App icon not included in Google search auto-complete

I implemented the AppIndexing API. I get automatic search completion and works as expected. But the application icon is not available. Today I updated the Google search application on my phone, and since then the application icon has not been suitable. Get a screenshot at http://i.stack.imgur.com/ckpGj.jpg

+6
source share
1 answer

Check if your application icon is defined in the manifest.xml file inside the application tag:

android:icon="@mipmap/ic_launcher" 

I had the same problem in an earlier version of my application and was fixed as soon as I added a launch icon (the application uses the Android bot icon by default as a launch icon if nothing is provided in the application tag, but not for AppIndexing Api) .

+2
source

All Articles