android-firebase-chat
android-firebase-chat copied to clipboard
[Firebase] Project 'RivChat' reached a Database plan limit
Dear all developer,
My project is as demo app base on Firebase backend. I used free plan for this app. But, now this plan reached limit. So have a lot of bug crash when app request to firebase.
If you want clone this repository, please create new firebase project and use instead of my default firebase.
Thanks.
Thanks for the info. Clarifies the mystery of why after the registration I was faced with the infinitely spinning progress bar positioned under "Get all friend..."
I know it's an old thread and am a beginner but @starapple2 @hieuapp @nguyenvulebinh so. 1) Import project -> 2) connect to firebase -> 3) replace json file makes the app run on my db? no more changes to be done? Thanks in advance. Need help asap
Doing so results in indefinite loading of 'get all friend...' screen.
@anuppatra Have you solve the problem? i got the same problem too
You need to create your own Firebase project and link it to the app instead of the Firebade project used by the developer.
i did all that and have the same problem
just create check null at your code, like this:
if(myAccount!=null){
setupArrayListInfo(myAccount);
if(infoAdapter != null){
infoAdapter.notifyDataSetChanged();
}
if(tvUserName != null){
tvUserName.setText(myAccount.name);
}
setImageAvatar(context, myAccount.avata);
SharedPreferenceHelper preferenceHelper = SharedPreferenceHelper.getInstance(context);
preferenceHelper.saveUserInfo(myAccount);
}