Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Firebase App Indexing App not showing in google autocomplete suggestions

I am trying to implement Firebase App Indexing, while the task to update the indexable is showing success and the index is also shown in the In Apps tab after searching in Google App. From what I understand, the index should also show up in the Auto Complete Suggestions when searching in the Google App but its not shown. I am following the tutorial from here. Following is the code snippet I am using to index the content:

Indexable menuItemToIndex = Indexables.noteDigitalDocumentBuilder()
                            .setName(title)
                            .setText(text)
                            .setUrl(link)
                            .build();

Task<Void> task = FirebaseAppIndex.getInstance().update(menuItemToIndex);

task.addOnCompleteListener(new OnCompleteListener<Void>() {
    @Override
    public void onComplete(@NonNull Task<Void> task) {
        Log.d(TAG, "App index updated: " + title);
    }
});

Also the version of the Firebase App Indexing library I'm using is

compile 'com.google.firebase:firebase-appindexing:10.0.1'

Is there anything I'm missing? I am testing on Nexus 6P running on Stock 7.1.1 and Google App version 6.9.36.21.arm64.

like image 442
Varun Ramani Avatar asked Jan 14 '17 12:01

Varun Ramani


2 Answers

Indexables need to be built with the Indexable.Builder, per item (which hints for a loop) ...while the DigitalDocumentBuilder is a rather specific implementation of it, especially for digital documents.

Indexable recipe = new Indexable.Builder()
    .setName("Brownie Recipe")
    .setUrl("//acme.com/recipes/12345678")
    .build();

FirebaseAppIndex.getInstance().update(recipe);
  • check out the AppIndex documentation or

  • build and run the AppIndexing Quickstart:

    git clone https://github.com/firebase/quickstart-android.git.

  • further reading: Enabling Deep Links for App Content.

the tutorial (and the question) appears a little dated; the current version is 11.0.2.

also com.google.android.gms:play-services-appindexing is required.

like image 118
Martin Zeitler Avatar answered Nov 14 '22 12:11

Martin Zeitler


After updating items like you have done, you also need to create a corresponding view action with the same url you used to update the item, just like in the recipe app, before it will appear in auto complete.

FirebaseUserActions.getInstance().start(Actions.newView(item.getTitle(),"http://example.com/item?id=5"))
like image 23
sbaar Avatar answered Nov 14 '22 12:11

sbaar