Reputation: 507
I'm following the tutorial on how to implement Algolia into an Android app. Tutorial
the line:
Searcher searcher = Searcher.create(ALGOLIA_APP_ID, ALGOLIA_SEARCH_API_KEY, ALGOLIA_INDEX_NAME);
helper = new InstantSearchHelper(this, searcher);
helper.search();
Keeps giving me this error:
Cannot resolve symbol ‘InstantSearchHelper’
Upvotes: 0
Views: 76
Reputation: 40
I had the same problem but after some research, just remove "Helper":
InstantSearch helper = new InstantSearch(this, searcher);
Upvotes: 1