I\'m using Firebase Android SDK and became interested in sending synchronous request instead of asynchronous. According to the documentation, in any request cal
It is not possible to load data synchronously with the official SDK. However, you can access all the data in firebase using the REST API. This would allow you to make synchronous calls. As mentioned about, Firebase is a realtime database and you will be missing the feature of updates when your data changes.