I'm creating an app that has different dashboards for users and me. how can I change the launcher activity when users log in and when I log in??
This is the part of the code where I need to switch launcher activity
if (email.matches("myEmail@gmail.com")) {
startActivity(new Intent(LoginActivity.this,AdminDashboardActivity.class));
finish();
} else {
startActivity(new Intent(LoginActivity.this,DashboardActivity.class));
finish();
}