Android-Chat-App icon indicating copy to clipboard operation
Android-Chat-App copied to clipboard

Missing variable declaration

Open MichaelsPlayground opened this issue 2 years ago • 2 comments

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

MichaelsPlayground avatar Nov 11 '22 09:11 MichaelsPlayground

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 avatar Apr 16 '23 10:04 MisLead07

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

MisLead07 avatar Apr 16 '23 10:04 MisLead07