0

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!

NoobTW
  • 2,466
  • 2
  • 24
  • 42

2 Answers2

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.

Community
  • 1
  • 1
ray an
  • 1,132
  • 3
  • 17
  • 42
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