I'm trying to implement Google App Indexing in one of my application. Content in my applications is divided into chapters:
- Linear motion
- Projectile motion
Each chapter is presented as one view, but there are a few sections in each of those views, for example Linear motion contains:
- Displacement
- Average velocity
I was able to index my data only by chapter title, but I'd like also to index all section titles. I tried to index all sections for the same app uri, but it looks like than only last entry is used.
Sample in C# (I'm using Xamarin):
foreach (var item in data)
{
var viewAction = Action.NewAction(Action.TypeView, item, baseAppUri);
AppIndex.AppIndexApi.Start(client, viewAction);
}
Is it possible to index few items to point to the same uri, or maybe I should stick with indexing chapter title only?