I have a tutorial how to use my app when it is first launched, but I can't get to my original app. I need a function for opening the main site of my app. Tried this but it didn't work:
private void launchMainScreen() {
prefManager.setFirstTimeLaunch(false);
startActivity(new Intent(MainActivity, MainActivity.class));
finish();
}