]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/free/assets/en/about_permissions.html
f3c3639125b00b9dbfb56be3a0a8b83a94453d28
[PrivacyBrowserAndroid.git] / app / src / free / assets / en / about_permissions.html
1 <!--
2   Copyright © 2016-2020 Soren Stoutner <soren@stoutner.com>.
3
4   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5
6   Privacy Browser is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Privacy Browser is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
18
19 <html>
20     <head>
21         <meta charset="UTF-8">
22
23         <link rel="stylesheet" href="../css/theme.css">
24
25         <!-- Setting the color scheme instructs the WebView to respect `prefers-color-scheme` @media CSS. -->
26         <meta name="color-scheme" content="light dark">
27     </head>
28
29     <body>
30         <h3>Have full network access</h3>
31         <p><a href="https://developer.android.com/reference/android/Manifest.permission.html#INTERNET">android.permission.INTERNET</a></p>
32         <p>Required for the WebView to access the internet. Without this permission, Privacy Browser would be “No Browser: Protecting Your Privacy by Staying Completely Off the Internet”.</p>
33
34         <h3>Install shortcuts</h3>
35         <p><a href="https://developer.android.com/reference/android/Manifest.permission.html#INSTALL_SHORTCUT">com.android.launcher.permission.INSTALL_SHORTCUT</a></p>
36         <p>Required to add shortcuts for websites to the launcher desktop.</p>
37
38         <h3>Read storage</h3>
39         <p><a href="https://developer.android.com/reference/android/Manifest.permission#READ_EXTERNAL_STORAGE">android.permission.READ_EXTERNAL_STORAGE</a></p>
40         <p>Required to import settings from public folders. On Android Marshmallow (API 23) and newer, if this permission is denied Privacy Browser can import settings from the app’s folders instead.</p>
41
42         <h3>Write storage</h3>
43         <p><a href="https://developer.android.com/reference/android/Manifest.permission.html#WRITE_EXTERNAL_STORAGE">android.permission.WRITE_EXTERNAL_STORAGE</a></p>
44         <p>Required to export settings and download files to the public folders.
45             On Android Marshmallow (API 23) and newer, if this permission is denied Privacy Browser can export settings and store downloads in the app’s folders instead.</p>
46
47         <br/>
48         <hr/>
49         <br/>
50
51         <p>In addition, Privacy Browser Free displays ads from Google’s AdMob network using the Firebase backend.
52             For the free flavor, Firebase adds the following permissions even though they are not listed in the source code
53             <a href="https://git.stoutner.com/?p=PrivacyBrowser.git;a=blob;f=app/src/main/AndroidManifest.xml;hb=HEAD">manifest file</a>.</p>
54
55         <h3>View network connections</h3>
56         <p><a href="https://developer.android.com/reference/android/Manifest.permission.html#ACCESS_NETWORK_STATE">android.permission.ACCESS_NETWORK_STATE</a></p>
57         <p>Allows the ads to tell when you are connected to the internet and when you aren’t (presumably so they don’t try to reload an ad when you are disconnected).
58             They can also tell if you are connected via Wi-Fi, 2G, 3G, 4G, etc.</p>
59
60         <h3>Prevent phone from sleeping</h3>
61         <p><a href="https://developer.android.com/reference/android/Manifest.permission.html#WAKE_LOCK">android.permission.WAKE_LOCK</a></p>
62         <p>Allows the ads to keep the processor from sleeping and the screen from dimming, although in my testing I don’t think the ads actually do this.</p>
63
64         <h3>Play Install Referrer API</h3>
65         <p><a href="https://android-developers.googleblog.com/2017/11/google-play-referrer-api-track-and.html">com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE</a></p>
66         <p>Allows other apps to tell if their installation was launched from an ad in Privacy Browser Free.</p>
67
68         <h3>Receive data from Internet</h3>
69         <p><a href="http://androidpermissions.com/permission/com.google.android.c2dm.permission.RECEIVE">com.google.android.c2dm.permission.RECEIVE</a></p>
70         <p>Allows Google to send information directly to the AdView without having to receive a request first (cloud-to-device messaging).</p>
71     </body>
72 </html>