Files
APKDownloader/app/src/main/res/xml/preferences_network.xml
Rahul Patel fbeee2300c CertifitacePinning: Add toggle to enable/disable
- Enabled by default
- Could be useful for people using VPN based ad blockers
- Option to make app usable, if at all Google's root certs gets changed/updated
2024-12-16 21:17:06 +05:30

62 lines
2.3 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/>.
~
-->
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
<Preference
app:iconSpaceReserved="false"
app:key="PREFERENCE_DISPENSER_URLS"
app:summary="@string/pref_dispenser_summary"
app:title="@string/pref_dispenser_title" />
<PreferenceCategory
app:iconSpaceReserved="false"
app:key="PREFERENCE_PROXY_URL"
app:singleLineTitle="false"
app:summary="protocol://user:password@host:port"
app:title="@string/pref_network_proxy_title" />
<SwitchPreferenceCompat
app:disableDependentsState="false"
app:iconSpaceReserved="false"
app:key="PREFERENCE_PROXY_ENABLED"
app:summary="@string/pref_network_proxy_enable_desc"
app:title="@string/pref_network_proxy_enable" />
<PreferenceCategory
app:iconSpaceReserved="false"
app:singleLineTitle="false"
app:title="@string/pref_common_extra" />
<SwitchPreferenceCompat
app:iconSpaceReserved="false"
app:key="PREFERENCE_CERTIFICATE_PINNING_ENABLED"
app:summary="@string/pref_certificate_pinning_enable_desc"
app:title="@string/pref_certificate_pinning_enable" />
<com.aurora.store.view.custom.preference.AuroraListPreference
app:defaultValue="0"
app:entries="@array/pref_vending_version"
app:entryValues="@array/pref_vending_version_values"
app:iconSpaceReserved="false"
app:key="PREFERENCE_VENDING_VERSION"
app:title="@string/pref_vending_version_title"
app:useSimpleSummaryProvider="true" />
</PreferenceScreen>