- startActivityForResult(new Intent(Preferences.this, MoveActivity.class),
- ACTION_SELECT_UPLOAD_PATH);
+ Intent intent = new Intent(Preferences.this, UploadPathActivity.class);
+ intent.putExtra("instant_upload_path", mUploadPath);
+ startActivityForResult(intent, ACTION_SELECT_UPLOAD_PATH);