Files
APKDownloader/app/src/main/res/xml/preferences_ui.xml
Aayush Gupta 52a8702ccc OnboardingFragment: Disable similar apps by default
AppDetailsFragment already has too much information and we also want
to put compatibility information. Hide similar apps by default to make
some space for it.

Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
2024-10-26 12:55:27 +05:30

60 lines
2.1 KiB
XML

<!--
~ Aurora Store
~ Copyright (C) 2021, Rahul Kumar Patel <whyorean@gmail.com>
~
~ Aurora Store is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 2 of the License, or
~ (at your option) any later version.
~
~ Aurora Store 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 Aurora Store. If not, see <http://www.gnu.org/licenses/>.
~
-->
<androidx.preference.PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
<Preference
app:iconSpaceReserved="false"
app:key="PREFERENCE_APP_LANGUAGE"
app:title="@string/app_language" />
<PreferenceCategory
app:iconSpaceReserved="false"
app:singleLineTitle="false"
app:title="@string/pref_ui_layout" />
<com.aurora.store.view.custom.preference.AuroraListPreference
app:defaultValue="0"
app:entries="@array/pref_default_tab"
app:entryValues="@array/pref_default_tab_values"
app:iconSpaceReserved="false"
app:key="PREFERENCE_DEFAULT_SELECTED_TAB"
app:title="@string/pref_ui_layout_tab"
app:useSimpleSummaryProvider="true" />
<PreferenceCategory
app:iconSpaceReserved="false"
app:singleLineTitle="false"
app:title="@string/pref_common_extra" />
<SwitchPreferenceCompat
app:defaultValue="true"
app:iconSpaceReserved="false"
app:key="PREFERENCE_FOR_YOU"
app:summary="@string/pref_ui_no_for_you_desc"
app:title="@string/pref_ui_no_for_you" />
<SwitchPreferenceCompat
app:defaultValue="false"
app:iconSpaceReserved="false"
app:key="PREFERENCE_SIMILAR"
app:summary="@string/pref_ui_similar_apps_desc"
app:title="@string/pref_ui_similar_apps" />
</androidx.preference.PreferenceScreen>