Android app with realTime database without using FIREBASE maybe Something like hooking on server

Viewed 5611

I have been coding an

android based Social Community application with RealTime database solution

which is done by using Volley library to receive and send data from a PHP based server. The issue is I've been facing is my app needs to update recyclerViews on RealTime.

I have dealt with firebase before its quite a nice solution. But for this application I am not allowed to use Firebase. So is there any solution for realTime database sync maintenance using SQL based backend.

2 Answers

You can use Realm. It's a NoSql local and cloud database, fast and powerful.

Related