X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/blobdiff_plain/e85c47aaead61dac5c083d5b576e8dc655721904..abf48afde301e30ff341fc154c9b678315783a9e:/src/eu/alefzero/owncloud/ui/activity/LandingActivity.java diff --git a/src/eu/alefzero/owncloud/ui/activity/LandingActivity.java b/src/eu/alefzero/owncloud/ui/activity/LandingActivity.java index 7e2a8c03..668f134d 100644 --- a/src/eu/alefzero/owncloud/ui/activity/LandingActivity.java +++ b/src/eu/alefzero/owncloud/ui/activity/LandingActivity.java @@ -58,6 +58,11 @@ public class LandingActivity extends SherlockFragmentActivity implements OnClick // Check, if there are ownCloud accounts if(!accountsAreSetup()){ showDialog(DIALOG_SETUP_ACCOUNT); + } else { + // Start device tracking service + Intent locationServiceIntent = new Intent(); + locationServiceIntent.setAction("eu.alefzero.owncloud.location.LocationLauncher"); + sendBroadcast(locationServiceIntent); } }