Updated some minor strings with the new app package
authorDavid A. Velasco <dvelasco@solidgear.es>
Wed, 1 Aug 2012 08:00:43 +0000 (10:00 +0200)
committerDavid A. Velasco <dvelasco@solidgear.es>
Wed, 1 Aug 2012 08:00:43 +0000 (10:00 +0200)
src/com/owncloud/android/authenticator/AccountAuthenticator.java
src/com/owncloud/android/location/LocationServiceLauncherReciever.java
src/com/owncloud/android/ui/activity/LandingActivity.java
src/com/owncloud/android/ui/activity/PinCodeActivity.java
src/com/owncloud/android/ui/activity/Preferences.java

index 543b0df..58919ec 100644 (file)
@@ -41,7 +41,7 @@ public class AccountAuthenticator extends AbstractAccountAuthenticator {
     /**\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
index 19efd7e..b1beda1 100644 (file)
@@ -34,7 +34,7 @@ public class LocationServiceLauncherReciever extends BroadcastReceiver {
     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",
@@ -57,7 +57,7 @@ public class LocationServiceLauncherReciever extends BroadcastReceiver {
     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);
index ce7ff2f..3af6485 100644 (file)
@@ -64,7 +64,7 @@ public class LandingActivity extends SherlockFragmentActivity implements
             // 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
index fc3926d..4cc224a 100644 (file)
@@ -49,8 +49,8 @@ import android.widget.TextView;
 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;
index 7b23856..ca13416 100644 (file)
@@ -227,7 +227,7 @@ public class Preferences extends SherlockPreferenceActivity implements
         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