Branch.io应用程序索引不是通过谷歌应用程序搜索应用程序

时间:2016-11-23 05:29:40

标签: android branch.io

我已使用Branch.io

设置了以下代码进行应用程序索引
   BranchUniversalObject branchUniversalObject = new BranchUniversalObject()
                .setCanonicalIdentifier("testing/")
                .setCanonicalUrl("testing") // optional
                .setTitle("irctc")
                .setContentDescription("my tetsing ")
                .setContentImageUrl("http://example.com/xyz")
                .setContentIndexingMode(BranchUniversalObject.CONTENT_INDEX_MODE.PUBLIC)
                .addContentMetadata("property1", "x")
                .addContentMetadata("property2", "y");

branchUniversalObject.listOnGoogleSearch(this);

清单

        <data
            android:host="open"
            android:scheme="testing"  />

我也在分支仪表板页面中启用了: -

自动生成站点地图(适用于Google App Indexing)

但值得关注的是谷歌应用程序在通过关键字“测试”进行搜索时没有搜索我的应用程序。

谁能告诉我哪里弄错了。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

分众来自Branch.io的Alex:虽然理论上可行,但这不太可能产生结果。您已采取的步骤提交这段内容给Google进行索引(尽管在分支结束前提交最多24小时的延迟)。不幸的是,这只是一个提交,而不是任何形式的保证,谷歌实际上对您提交的内容做任何

Google用于索引和排名的算法不公开,因此即使提交成功,很可能会忽略您上面配置的内容,因为它没有价值。

您可以在this documentation page

上阅读有关Branch App Indexing实施的更多信息