Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Plain Java Client

How can I integrate Firebase with a Java desktop application?

Is there a .jar file I could download?

I've seen plain Java docs on the old Firebase version but I'm unable to find any documentation on the latest version of Firebase.

My IDE is Netbeans.

Thanks.

like image 597
RamithDR Avatar asked Aug 21 '16 04:08

RamithDR


People also ask

Can you use Java with Firebase?

Our Java SDK can be used from your backend as well to allow you to synchronize and modify data directly from your servers. This lets you perform additional data processing, trigger events when certain data changes occur, and even mirror your Firebase data in other kinds of data stores.

Is Firebase server side or client-side?

This chapter discusses how to integrate and use the Firebase web service in a client-side application (using React). Firebase is a web service that provides tools and infrastructure for use in creating web and mobile apps that store data online in the cloud (a “web backend solution”).

Can I use REST API with Firebase?

The REST API can also be used to retrieve and update the Firebase Realtime Database Rules for your Firebase project. You'll need your Firebase project's secret, which you can find under the Service Accounts panel of your Firebase project's setting.


1 Answers

According to the documentation website Firebase will not work just like that, it's an application designed to run only on 3 platforms, namely:

  • Android
  • iOS
  • Web

You can try and use the maven repository for the integration purpose, with any build script. I'm not exactly sure what you expect to do.

like image 198
thepoosh Avatar answered Sep 27 '22 23:09

thepoosh