|
@@ -1,28 +1,17 @@
|
|
|
/*
|
|
|
- * ownCloud Android client application
|
|
|
+ * Nextcloud - Android Client
|
|
|
*
|
|
|
- * @author Bartek Przybylski
|
|
|
- * @author María Asensio Valverde
|
|
|
- * @author Juan Carlos González Cabrero
|
|
|
- * @author David A. Velasco
|
|
|
- * @author Chris Narkiewicz
|
|
|
- * Copyright (C) 2012 Bartek Przybylski
|
|
|
- * Copyright (C) 2016 ownCloud Inc.
|
|
|
- * Copyright (C) 2019 Chris Narkiewicz <hello@ezaquarii.com>
|
|
|
- *
|
|
|
- * This program is free software: you can redistribute it and/or modify
|
|
|
- * it under the terms of the GNU General Public License version 2,
|
|
|
- * as published by the Free Software Foundation.
|
|
|
- *
|
|
|
- * This program is distributed in the hope that it will be useful,
|
|
|
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
- * GNU General Public License for more details.
|
|
|
- *
|
|
|
- * You should have received a copy of the GNU General Public License
|
|
|
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
+ * SPDX-FileCopyrightText: 2023 TSI-mc
|
|
|
+ * SPDX-FileCopyrightText: 2016-2023 Tobias Kaminsky <tobias@kaminsky.me>
|
|
|
+ * SPDX-FileCopyrightText: 2019 Chris Narkiewicz <hello@ezaquarii.com>
|
|
|
+ * SPDX-FileCopyrightText: 2016-2018 Andy Scherzinger <info@andy-scherzinger.de>
|
|
|
+ * SPDX-FileCopyrightText: 2016 ownCloud Inc.
|
|
|
+ * SPDX-FileCopyrightText: 2016 David A. Velasco <dvelasco@solidgear.es>
|
|
|
+ * SPDX-FileCopyrightText: 2016 Juan Carlos González Cabrero <malkomich@gmail.com>
|
|
|
+ * SPDX-FileCopyrightText: 2013 María Asensio Valverde <masensio@solidgear.es>
|
|
|
+ * SPDX-FileCopyrightText: 2011-2012 Bartosz Przybylski <bart.p.pl@gmail.com>
|
|
|
+ * SPDX-License-Identifier: GPL-2.0-only AND AGPL-3.0-or-later
|
|
|
*/
|
|
|
-
|
|
|
package com.owncloud.android.ui.activity;
|
|
|
|
|
|
import android.accounts.Account;
|
|
@@ -126,11 +115,12 @@ import androidx.recyclerview.widget.LinearLayoutManager;
|
|
|
import static com.owncloud.android.utils.DisplayUtils.openSortingOrderDialogFragment;
|
|
|
|
|
|
/**
|
|
|
- * This can be used to upload things to an ownCloud instance.
|
|
|
+ * This can be used to upload things to an Nextcloud instance.
|
|
|
*/
|
|
|
public class ReceiveExternalFilesActivity extends FileActivity
|
|
|
implements View.OnClickListener, CopyAndUploadContentUrisTask.OnCopyTmpFilesTaskListener,
|
|
|
- SortingOrderDialogFragment.OnSortingOrderListener, Injectable, AccountChooserInterface, ReceiveExternalFilesAdapter.OnItemClickListener {
|
|
|
+ SortingOrderDialogFragment.OnSortingOrderListener, Injectable, AccountChooserInterface,
|
|
|
+ ReceiveExternalFilesAdapter.OnItemClickListener {
|
|
|
|
|
|
private static final String TAG = ReceiveExternalFilesActivity.class.getSimpleName();
|
|
|
|