Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android firebase app indexing search suggestions update perid

As far as i can see there is gap between app with integrated firebase app indexing installed, and moment when indexed content appear as suggestions when user type query in google search bar.
I can't figure out how it works and what is the period of time user need to wait to see suggestions. Does developer need to take some actions to force app-indexed-content appearance in search? I mean appearance not as result of search in "IN APPS" tab, but as a suggestion - check attached image: image

like image 912
x90 Avatar asked Nov 08 '22 04:11

x90


1 Answers

In order for the indexable item to appear in the auto complete suggestions, you must also record a view action after adding the item to the index

FirebaseUserActions.getInstance().start(Actions.newView(item.getTitle(),"http://example.com/item?id=5"))
like image 64
sbaar Avatar answered Nov 15 '22 04:11

sbaar