-1

我可以使用“AppIndex.AppIndexApi.start(mGoogleApiClient, indexAction);”在默认谷歌搜索结果(自动完成)上显示索引内容

但在那之后我决定从谷歌搜索结果中删除一些索引内容(自动完成)。

例如:在应用程序的第一个版本中索引以下内容。1. 虚拟内容(android-app://com.myindexingapp/sample/Dummy content) 2. 虚拟内容2(android-app://com.myindexingapp/sample/Dummy content2)

我可以在我的设备上的谷歌搜索结果中看到虚拟内容和虚拟内容2。

在第二个版本中,我只想显示虚拟内容意味着我想取消索引虚拟内容2(android-app://com.myindexingapp/sample/Dummy content2)

任何人都可以帮助我如何实现这一目标?

我尝试使用“AppIndex.AppIndexApi.end(mGoogleApiClient, indexAction);” 用同样的动作,但它不工作。

在这里,我使用“GoogleApiClient”和“AppIndex.AppIndexApi”来索引数据(在第一个版本中没有使用最新的 firebase 索引)。

4

1 回答 1

1

使用下面的代码修复了这个问题。

com.google.firebase.appindexing.Action fbIndexAction = Actions.newView(title, BASE_APP_URI.toString());
            Log.v(LOG_TAG, "@@@@ data path here " + title + " uri here " + BASE_APP_URI);
            FirebaseUserActions.getInstance().end(fbIndexAction);

            FirebaseAppIndex.getInstance().remove(BASE_APP_URI.toString());
于 2017-04-03T12:36:18.367 回答