ret_idx might be null for a new user since its entry in database is not made. So whenever the app detects ret_idx is null, it shows the java.lang.NullPointerException. How do I avoid this exception from crashing my app, considering ret_idx might go null in several cases.
String ret_idx=dataSnapshot.child("name").getValue().toString();