Initial QSfera import

This commit is contained in:
Курнат Андрей
2026-06-07 10:20:04 +03:00
commit 2315f25754
16485 changed files with 4826827 additions and 0 deletions
@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="utf-8"?><!--
qsfera Android client application
Copyright (C) 2021 ownCloud GmbH.
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/>.
-->
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<SwitchPreferenceCompat
app:iconSpaceReserved="false"
app:key="enable_video_uploads"
app:summary="@string/prefs_camera_video_upload_summary"
app:title="@string/prefs_camera_video_upload" />
<ListPreference
app:dialogTitle="@string/prefs_video_upload_account"
app:iconSpaceReserved="false"
app:key="video_uploads_account_name"
app:negativeButtonText=""
app:title="@string/prefs_video_upload_account"
app:useSimpleSummaryProvider="true" />
<Preference
app:iconSpaceReserved="false"
app:key="video_uploads_path"
app:title="@string/prefs_camera_video_upload_path_title" />
<Preference
app:iconSpaceReserved="false"
app:key="video_uploads_source_path"
app:title="@string/prefs_camera_upload_source_path_title" />
<Preference
app:iconSpaceReserved="false"
app:key="video_uploads_clear_source_paths"
app:title="@string/prefs_camera_upload_source_paths_clear_title" />
<ListPreference
app:defaultValue="NOTHING"
app:dialogTitle="@string/prefs_camera_upload_behaviour_dialog_title"
app:iconSpaceReserved="false"
app:key="video_uploads_behaviour"
app:negativeButtonText=""
app:title="@string/prefs_camera_upload_behaviour_title"
app:useSimpleSummaryProvider="true" />
<Preference
app:iconSpaceReserved="false"
app:key="video_uploads_last_sync"
app:title="@string/prefs_camera_upload_last_sync_title" />
<eu.qsfera.android.presentation.settings.LargePreferenceCategory
android:title="@string/prefs_camera_picture_upload_conditions_title"
app:iconSpaceReserved="false"
app:summary="@string/prefs_camera_picture_upload_conditions_summary">
<CheckBoxPreference
app:iconSpaceReserved="false"
app:key="video_uploads_on_wifi"
app:title="@string/prefs_camera_video_upload_on_wifi" />
<CheckBoxPreference
app:iconSpaceReserved="false"
app:key="video_uploads_on_charging"
app:title="@string/prefs_camera_video_upload_on_charging" />
</eu.qsfera.android.presentation.settings.LargePreferenceCategory>
</PreferenceScreen>