I am able to display the indexed content on default google search results(auto complete) by using "AppIndex.AppIndexApi.start(mGoogleApiClient, indexAction);"
but after that I decided to remove the some of the indexed content from google search results(auto complete).
For Example: In first version of the app indexed below content. 1. Dummy content(android-app://com.myindexingapp/sample/Dummy content) 2. Dummy content2(android-app://com.myindexingapp/sample/Dummy content2)
I am able to see both Dummy content and Dummy content2 in google search result on my device.
In second version I want to show only Dummy content means I want to un index Dummy content2(android-app://com.myindexingapp/sample/Dummy content2)
Can any one help me how can we achieve this?
I tried using "AppIndex.AppIndexApi.end(mGoogleApiClient, indexAction);" with same action but it is not working.
Here I use "GoogleApiClient" and "AppIndex.AppIndexApi" to index data(didn't used latest firebase indexing in first version).