android-firebase-chat icon indicating copy to clipboard operation
android-firebase-chat copied to clipboard

[Firebase] Project 'RivChat' reached a Database plan limit

Open hieuapp opened this issue 7 years ago • 6 comments

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. screenshot from 2017-11-26 22-10-39

hieuapp avatar Nov 26 '17 15:11 hieuapp

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..."

starapple2 avatar Nov 26 '17 15:11 starapple2

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 avatar May 14 '18 11:05 anuppatra

@anuppatra Have you solve the problem? i got the same problem too

giovankabisano avatar Aug 02 '18 01:08 giovankabisano

You need to create your own Firebase project and link it to the app instead of the Firebade project used by the developer.

starapple2 avatar Aug 02 '18 03:08 starapple2

i did all that and have the same problem

kickass23 avatar Aug 05 '18 16:08 kickass23

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);
        }

bontanksakti84 avatar Oct 04 '18 07:10 bontanksakti84