Raj-m01 / Android-Chat-App

An android chat app built using java and firebase services
43 stars 23 forks source link

Missing variable declaration #5

Open MichaelsPlayground opened 1 year ago

MichaelsPlayground commented 1 year ago

Hi, thanks for your wonderful contribution with this Android app - it helped me a lot in understanding how to work with Firebase.

While trying to run your I received some messages from my Android Studio (I'm running Android Studio Dolphin | 2021.3.1 Patch 1 with SDK 33).

In MessagingActivity there is a missing variable declaration:

                            String decrypted = "";
                            try {
                                decrypted = AESUtils.decrypt(msg);
                            } catch (Exception er) {
                                er.printStackTrace();
                            }

My Android Studio claimed about a lot of possible "Method invocation 'toString' may produce 'NullPointerException'" like here:

String msg = e.child("msgText").getValue().toString();

I replaced all of those with the recommended

String msg = Objects.requireNonNull(e.child("msgText").getValue()).toString();

A last note: It would be perfect if you could add a simple explanation what services are needed in the Firebase setup - it took me some time to find them all (Authentication with Email and Google, Realtime Database and Storage).

Thanks again, greetings from Michael

MisLead07 commented 1 year ago

I am also getting the same issue mentioned above by @MichaelsPlayground i.e. Cannot find symbol decrypted as well as Cannot find variable decrypted in the MessagingActivity Java Class

MisLead07 commented 1 year ago

I am also getting the same issue mentioned above by @MichaelsPlayground i.e. Cannot find symbol decrypted as well as Cannot find variable decrypted in the MessagingActivity Java Class

Okay, so i somehow managed to get rid of this issue by creating a variable named decrypted of the type String in the MessagingActivity

But now the issue is that am not able to access the profile option in setting as the app just crashes and i get an error which states Attempt to invoke virtual method 'java.lang.String java.lang.Object.toString()' on a null object reference and the other issue is that i am not able to add users to the app (as shown in the video by the OG creator) using their email or even their usernames for reference