In my Android app, I use Firebase as the database. I want to add some search capabilities, and after my research, I found that Algolia is suitable for me.
Algolia Firebase Tutorial explains how to integrate an existing Firebase database with Algolia. In this tutorial, they provide some Node.js code (which I am not familiar with). In the first data collection, I simply copied the integration code, making the necessary changes and launched it on the Windows terminal: the data is now imported from Firebase to Algolia.
But there are other necessary specifications, such as updating, deleting data. They also provide some js codes for this purpose, but I really don't know how to attach these listeners in my android application using this js code.
Can someone give me an idea of how this is done correctly?
source
share