]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/AndroidManifest.xml
c018200ef5cf5458f9af38e8a9e4b6c17936be73
[PrivacyBrowserAndroid.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2018 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
22           xmlns:tools="http://schemas.android.com/tools"
23           package="com.stoutner.privacybrowser" >
24
25     <!-- Required to load websites. -->
26     <uses-permission android:name="android.permission.INTERNET" />
27
28     <!-- Required to create home screen shortcuts. -->
29     <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
30
31     <!-- Required to import settings from external storage. -->
32     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
33
34     <!-- Required to export settings and save files to public storage. -->
35     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
36
37
38     <!-- Support Chromebooks that don't have a touch screen. -->
39     <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
40
41
42     <!-- For API >= 23, app data is automatically backed up to Google cloud servers unless `android:allowBackup="false"` and `android:fullBackupContent="false"` is set. -->
43     <application
44         android:label="@string/privacy_browser"
45         android:icon="@mipmap/privacy_browser"
46         android:roundIcon="@mipmap/privacy_browser_round"
47         android:allowBackup="false"
48         android:fullBackupContent="false"
49         android:supportsRtl="true"
50         android:networkSecurityConfig="@xml/network_security_config"
51         tools:ignore="UnusedAttribute" >
52
53         <!-- If `android:name="android.webkit.WebView.MetricsOptOut"` is not `true` then `WebViews` will upload metrics to Google.  <https://developer.android.com/reference/android/webkit/WebView.html> -->
54         <meta-data
55             android:name="android.webkit.WebView.MetricsOptOut"
56             android:value="true" />
57
58         <!-- Explicitly disable "Safe Browsing". -->
59         <meta-data
60             android:name="android.webkit.WebView.EnableSafeBrowsing"
61             android:value="false" />
62
63         <!-- Specify the Application ID used by the ads in the free flavor. -->
64         <meta-data
65             android:name="com.google.android.gms.ads.APPLICATION_ID"
66             android:value="@string/google_app_id" />
67
68         <!-- The file provider is required to encrypt files with OpenKeychain. -->
69         <provider
70             android:name="android.support.v4.content.FileProvider"
71             android:authorities="@string/file_provider"
72             android:exported="false"
73             android:grantUriPermissions="true" >
74
75             <meta-data
76                 android:name="android.support.FILE_PROVIDER_PATHS"
77                 android:resource="@xml/file_provider_paths" />
78         </provider>
79         
80         <!-- The theme has to be defined here or an ugly title bar is displayed when the app launches.
81              `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes, which preserves scroll location in the WebView.
82              `android:launchMode="singleTask"` makes the app launch in a new task instead of inside the task of the program that sends it an intent.
83              It also makes it reuse an existing Privacy Browser activity if available instead of launching a new one.
84              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
85              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
86         <activity
87             android:name=".activities.MainWebViewActivity"
88             android:label="@string/privacy_browser"
89             android:theme="@style/PrivacyBrowserLight"
90             android:configChanges="orientation|screenSize"
91             android:launchMode="singleTask"
92             android:screenOrientation="fullUser"
93             android:persistableMode="persistNever"
94             tools:ignore="UnusedAttribute" >
95
96             <intent-filter>
97                 <action android:name="android.intent.action.MAIN" />
98                 <category android:name="android.intent.category.LAUNCHER" />
99             </intent-filter>
100
101             <!-- Process web intents. -->
102             <intent-filter>
103                 <action android:name="android.intent.action.VIEW" />
104
105                 <category android:name="android.intent.category.BROWSABLE" />
106                 <category android:name="android.intent.category.DEFAULT" />
107
108                 <data android:scheme="http" />
109                 <data android:scheme="https" />
110             </intent-filter>
111
112             <!-- Process content intents for text files. -->
113             <intent-filter>
114                 <action android:name="android.intent.action.VIEW" />
115
116                 <category android:name="android.intent.category.BROWSABLE" />
117                 <category android:name="android.intent.category.DEFAULT" />
118
119                 <data android:scheme="content" />
120                 <data android:mimeType="text/*" />
121             </intent-filter>
122
123             <!-- Process web search intents. -->
124             <intent-filter>
125                 <action android:name="android.intent.action.WEB_SEARCH" />
126
127                 <category android:name="android.intent.category.BROWSABLE" />
128                 <category android:name="android.intent.category.DEFAULT" />
129             </intent-filter>
130         </activity>
131
132
133         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
134              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
135              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
136         <activity
137             android:name=".activities.BookmarksActivity"
138             android:label="@string/bookmarks"
139             android:parentActivityName=".activities.MainWebViewActivity"
140             android:configChanges="orientation|screenSize"
141             android:screenOrientation="fullUser"
142             android:persistableMode="persistNever"
143             tools:ignore="UnusedAttribute" />
144
145         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
146              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
147              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
148         <activity
149             android:name=".activities.BookmarksDatabaseViewActivity"
150             android:label="@string/bookmarks_database_view"
151             android:parentActivityName=".activities.BookmarksActivity"
152             android:configChanges="orientation|screenSize"
153             android:screenOrientation="fullUser"
154             android:persistableMode="persistNever"
155             tools:ignore="UnusedAttribute" />
156
157         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
158              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
159              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
160         <activity
161             android:name=".activities.RequestsActivity"
162             android:label="@string/requests"
163             android:parentActivityName=".activities.MainWebViewActivity"
164             android:configChanges="orientation|screenSize"
165             android:screenOrientation="fullUser"
166             android:persistableMode="persistNever"
167             tools:ignore="UnusedAttribute" />
168
169         <!-- `android:windowSoftInputMode="stateAlwaysHidden"` keeps the keyboard from displaying when the screen is rotated and after the `AddDomainDialog` is dismissed.
170              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
171              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
172         <activity
173             android:name=".activities.DomainsActivity"
174             android:label="@string/domains"
175             android:parentActivityName=".activities.MainWebViewActivity"
176             android:screenOrientation="fullUser"
177             android:windowSoftInputMode="stateAlwaysHidden"
178             android:persistableMode="persistNever"
179             tools:ignore="UnusedAttribute" />
180
181         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
182              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
183              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
184         <activity
185             android:name=".activities.SettingsActivity"
186             android:label="@string/privacy_browser_settings"
187             android:parentActivityName=".activities.MainWebViewActivity"
188             android:configChanges="orientation|screenSize"
189             android:screenOrientation="fullUser"
190             android:persistableMode="persistNever"
191             tools:ignore="UnusedAttribute" />
192
193         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
194              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
195              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
196         <activity
197             android:name=".activities.ImportExportActivity"
198             android:label="@string/import_export"
199             android:parentActivityName=".activities.MainWebViewActivity"
200             android:configChanges="orientation|screenSize"
201             android:screenOrientation="fullUser"
202             android:persistableMode="persistNever"
203             tools:ignore="UnusedAttribute" />
204
205         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
206              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
207              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
208         <activity
209             android:name=".activities.GuideActivity"
210             android:label="@string/privacy_browser_guide"
211             android:parentActivityName=".activities.MainWebViewActivity"
212             android:configChanges="orientation|screenSize"
213             android:screenOrientation="fullUser"
214             android:persistableMode="persistNever"
215             tools:ignore="UnusedAttribute" />
216
217         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
218              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
219              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
220         <activity
221             android:name=".activities.AboutActivity"
222             android:label="@string/about_privacy_browser"
223             android:parentActivityName=".activities.MainWebViewActivity"
224             android:configChanges="orientation|screenSize"
225             android:screenOrientation="fullUser"
226             android:persistableMode="persistNever"
227             tools:ignore="UnusedAttribute" />
228
229         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
230              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
231              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
232         <activity
233             android:name=".activities.ViewSourceActivity"
234             android:label="@string/view_source"
235             android:parentActivityName=".activities.MainWebViewActivity"
236             android:configChanges="orientation|screenSize"
237             android:screenOrientation="fullUser"
238             android:persistableMode="persistNever"
239             tools:ignore="UnusedAttribute" />
240     </application>
241 </manifest>