Renamed home screen to dashboard.

This commit is contained in:
akwizgran
2014-02-05 22:19:29 +00:00
parent 4fdcbca357
commit bd40c65916
6 changed files with 19 additions and 19 deletions

View File

@@ -58,7 +58,7 @@ public class SplashScreenActivity extends RoboSplashActivity {
LOG.info("Guice startup took " + duration + " ms");
Injector guice = RoboGuice.getBaseApplicationInjector(getApplication());
if(guice.getInstance(DatabaseConfig.class).databaseExists()) {
Intent i = new Intent(this, HomeScreenActivity.class);
Intent i = new Intent(this, DashboardActivity.class);
i.setFlags(FLAG_ACTIVITY_NEW_TASK);
startActivity(i);
} else {