I know for sure that Firebase can work offline and store locally any changes you made to the database and whenever he get connection again upload the changes, when you're coding on android. This can be used in any Java aplication, or is it only in android? I've searched but find nothing about this. Thanks in advance!
Asked
Active
Viewed 275 times
0
-
Firebase has a REST API. Anything that can do REST should be able to use Firebase. https://robert-reiz.com/2012/04/22/java-driver-for-firebase/ – Dave Newton May 13 '17 at 17:47
-
this will help a lot, thanks!! – Martin Chocho May 13 '17 at 19:45
2 Answers
0
is it only in android?
-- No, as you know Firebase is a technology that permits you to make mobile and web applications with no server-side programming so that development turns out to be quicker and easier.
You can use Firebase with-
- Android
- Unity
- IOS
- Web and more
Check this SO question.
Also, here is what I found.
0
firebaser here
Disk persistence is only available on iOS and Android. It is not available in the Java Admin SDK.

Frank van Puffelen
- 565,676
- 79
- 828
- 807
-
thats why i couldn't find nothing about it. Thanks. By the way do yo know any workaround to acomplish something like that? – Martin Chocho May 14 '17 at 01:07
-
You'd have to build your own wrapper, similar to the JavaScript/polymer version here: https://codelabs.developers.google.com/codelabs/polymer-firebase-pwa/index.html?index=..%2F..%2Findex#25 – Frank van Puffelen May 14 '17 at 01:15