I want to save a value from my LoginActivity and Provide that to my MainActivity, but currently Log.d does not Show anything. I tried using shared preferences.
My LoginActivity:
// I want to save email to mainactivity
SharedPreferences webrtcOptions = getSharedPreferences("webrtcOptions", Context.MODE_PRIVATE);
SharedPreferences.Editor editor = webrtcOptions.edit();
editor.putString("email", email);
editor.commit();
And in my MainActivity I try to call it like this:
SharedPreferences webrtcOptions = getSharedPreferences("webrtcOptions", 0);
String currentUserMail = webrtcOptions.getString("email", "test");
Log.d("HERE", currentUserMail);