5

嘿!

我正在尝试实现应用程序索引内容,并且我已经开始使用应用程序索引Google 代码实验室示例。

运行此代码

 Indexable recipeToIndex = new Indexable.Builder()
           .setName(mRecipe.getTitle())
           .setUrl(mRecipe.getRecipeUrl())
           .setImage(mRecipe.getPhoto())
           .setDescription(mRecipe.getDescription())
           .build();

 FirebaseAppIndex.getInstance().update(recipeToIndex); 

总是导致方法FirebaseAppIndexingInvalidArgumentException抛出update()

com.google.firebase.appindexing.FirebaseAppIndexingInvalidArgumentException: Intent 'Intent { act=android.intent.action.VIEW dat=http://example.com pkg=com.example }' cannot be resolved. The invalid indexable is: Indexable { { id: 'http://example.com/123' } Properties { { key: 'name' value: [ 'test_name' ] } } Metadata { worksOffline: false, score: 0 } }
                          at com.google.firebase.appindexing.internal.zzn.zzb(Unknown Source)
                          at com.google.firebase.appindexing.internal.zzd$zzc$1.onComplete(Unknown Source)
                          at com.google.android.gms.tasks.zzc$1.run(Unknown Source)
                          at android.os.Handler.handleCallback(Handler.java:739)
                          at android.os.Handler.dispatchMessage(Handler.java:95)
                          at android.os.Looper.loop(Looper.java:145)
                          at android.app.ActivityThread.main(ActivityThread.java:5951)
                          at java.lang.reflect.Method.invoke(Native Method)
                          at java.lang.reflect.Method.invoke(Method.java:372)
                          at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1400)
                          at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1195)

您对如何添加图像有什么建议Indexable吗?

4

4 回答 4

2

我收到此错误的原因是我正在测试的应用程序的清单中没有意图过滤器。

确保您在 indexable 上设置的 url 清单中有匹配的条目

    <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <intent-filter android:label="@string/app_name" android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data android:scheme="http"
                    android:host="century.com"
                    android:pathPrefix="/recipe" />
            </intent-filter>
        </activity>

于 2017-07-21T06:00:09.043 回答
1

确保 setUrl() 收到格式正确的 URL,我的有http://app.com//path

// 之前的路径导致问题

  Indexable recipeToIndex = new Indexable.Builder()
           .setName(mRecipe.getTitle())
           .setUrl(Uri.parse(mRecipe.getRecipeUrl()).toString())
           .setImage(Uri.parse(mRecipe.getPhoto()).toString())
           .setDescription(mRecipe.getDescription())
           .build();

这对 setImage 来说不是那么重要

于 2018-01-01T22:16:16.943 回答
1

删除图像消息或像这样编辑代码。

if (friendlyMessage.getText() != null) {
   FirebaseAppIndex.getInstance().update(getMessageIndexable(friendlyMessage));
}
FirebaseUserActions.getInstance().end(getMessageViewAction(friendlyMessage));

似乎本教程没有考虑没有消息的消息。所有消息都应该是文本或带有图像的文本。要修复它,您应该检查。 https://github.com/firebase/friendlychat/issues/160

于 2017-03-29T17:38:29.843 回答
-1

您应该从示例中的Indexables类中选择适当的(或更适合的)Builder 。

于 2016-12-20T12:52:45.480 回答