/**\r
* Value under this key should handle path to webdav php script. Will be\r
* removed and usage should be replaced by combining\r
- * {@link eu.alefzero.owncloud.authenticator.KEY_OC_BASE_URL} and\r
+ * {@link com.owncloud.android.authenticator.AuthenticatorActivity.KEY_OC_BASE_URL} and\r
* {@link com.owncloud.android.utils.OwnCloudVersion}\r
* \r
* @deprecated\r
public void onReceive(Context context, Intent intent) {
Intent deviceTrackingIntent = new Intent();
deviceTrackingIntent
- .setAction("eu.alefzero.owncloud.location.LocationUpdateService");
+ .setAction("com.owncloud.android.location.LocationUpdateService");
SharedPreferences preferences = PreferenceManager
.getDefaultSharedPreferences(context);
boolean trackDevice = preferences.getBoolean("enable_devicetracking",
private void startOrStopDeviceTracking(Context context, boolean trackDevice) {
Intent deviceTrackingIntent = new Intent();
deviceTrackingIntent
- .setAction("eu.alefzero.owncloud.location.LocationUpdateService");
+ .setAction("com.owncloud.android.location.LocationUpdateService");
if (!isDeviceTrackingServiceRunning(context) && trackDevice) {
Log.d(TAG, "Starting device tracker service");
context.startService(deviceTrackingIntent);
// Start device tracking service\r
Intent locationServiceIntent = new Intent();\r
locationServiceIntent\r
- .setAction("eu.alefzero.owncloud.location.LocationLauncher");\r
+ .setAction("com.owncloud.android.location.LocationLauncher");\r
sendBroadcast(locationServiceIntent);\r
}\r
\r
public class PinCodeActivity extends SherlockFragmentActivity {
- public final static String EXTRA_ACTIVITY = "eu.alefzero.owncloud.ui.activity.PinCodeActivity.ACTIVITY";
- public final static String EXTRA_NEW_STATE = "eu.alefzero.owncloud.ui.activity.PinCodeActivity.NEW_STATE";
+ public final static String EXTRA_ACTIVITY = "com.owncloud.android.ui.activity.PinCodeActivity.ACTIVITY";
+ public final static String EXTRA_NEW_STATE = "com.owncloud.android.ui.activity.PinCodeActivity.NEW_STATE";
Button bCancel;
TextView mPinHdr;
else if (preference.equals(mDeviceTracking)) {\r
Intent locationServiceIntent = new Intent();\r
locationServiceIntent\r
- .setAction("eu.alefzero.owncloud.location.LocationLauncher");\r
+ .setAction("com.owncloud.android.location.LocationLauncher");\r
locationServiceIntent.putExtra("TRACKING_SETTING",\r
(Boolean) newValue);\r
sendBroadcast(locationServiceIntent);\r