x90
x90

Reputation: 2170

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

Upvotes: 5

Views: 693

Answers (1)

sbaar
sbaar

Reputation: 1425

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"))

Upvotes: 1

Related Questions