* @return true if the application was running, false otherwise
*/
private boolean stopApp() {
MainSynchronizer synchronizer = application.getUniverseContext().getSynchronizer();
if (synchronizer.isRunning()) {
synchronizer.stop();
return true;
}
return false;
}