1 <?xml version="1.0" encoding="utf-8"?>
4 SPDX-License-Identifier: GPL-3.0-or-later
5 SPDX-FileCopyrightText: 2018, 2020, 2022 Soren Stoutner <soren@stoutner.com>
7 This file is part of Privacy Browser Android <https://www.stoutner.com/privacy-browser-android/>.
9 This program is free software: you can redistribute it and/or modify it under
10 the terms of the GNU General Public License as published by the Free Software
11 Foundation, either version 3 of the License, or (at your option) any later
14 This program is distributed in the hope that it will be useful, but WITHOUT
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
19 You should have received a copy of the GNU General Public License along with
20 this program. If not, see <https://www.gnu.org/licenses/>. -->
22 <network-security-config xmlns:tools="http://schemas.android.com/tools">
23 <!-- Allow HTTP traffic and disable HSTS, which has no benefit for Privacy Browser (because unspecified links default to HTTPS) but has negative fingerprinting implications. -->
25 cleartextTrafficPermitted="true"
27 tools:ignore="InsecureBaseConfiguration" >
30 <!-- Trust system certificate authorities. -->
31 <certificates src="system" />
33 <!-- Trust user certificate authorities. -->
34 <certificates src="user" tools:ignore="AcceptsUserCertificates" />
37 </network-security-config>