]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/AndroidManifest.xml
Modify the intent filters to make it easier for other browsers to share URLs with...
[PrivacyBrowserAndroid.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2015-2020 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 <!-- Install location auto allows users to move Privacy Browser to an SD card if desired. -->
22 <manifest
23     xmlns:android="http://schemas.android.com/apk/res/android"
24     xmlns:tools="http://schemas.android.com/tools"
25     package="com.stoutner.privacybrowser"
26     android:installLocation="auto" >
27
28     <!-- Required to load websites. -->
29     <uses-permission android:name="android.permission.INTERNET" />
30
31     <!-- Required to create home screen shortcuts. -->
32     <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
33
34     <!-- Required to import settings from external storage. -->
35     <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
36
37     <!-- Required to export settings and save files to public storage. -->
38     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
39
40
41     <!-- Support Chromebooks that don't have a touch screen. -->
42     <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
43
44
45     <!-- For API >= 23, app data is automatically backed up to Google cloud servers unless `android:allowBackup="false"` and `android:fullBackupContent="false"` is set.
46         `android:requestLegacyExternalStorage="true"` makes Android 10 storage permissions work like previous versions of Android.  It is a temporary workaround.  <https://redmine.stoutner.com/issues/546> -->
47     <application
48         android:label="@string/privacy_browser"
49         android:icon="@mipmap/privacy_browser"
50         android:roundIcon="@mipmap/privacy_browser_round"
51         android:allowBackup="false"
52         android:fullBackupContent="false"
53         android:supportsRtl="true"
54         android:networkSecurityConfig="@xml/network_security_config"
55         android:requestLegacyExternalStorage="true"
56         tools:ignore="UnusedAttribute" >
57
58         <!-- 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> -->
59         <meta-data
60             android:name="android.webkit.WebView.MetricsOptOut"
61             android:value="true" />
62
63         <!-- Explicitly disable "Safe Browsing". -->
64         <meta-data
65             android:name="android.webkit.WebView.EnableSafeBrowsing"
66             android:value="false" />
67
68         <!-- Specify the Application ID used by the ads in the free flavor. -->
69         <meta-data
70             android:name="com.google.android.gms.ads.APPLICATION_ID"
71             android:value="@string/google_app_id" />
72
73         <!-- Don't initialize the ad system in the free flavor until it is explicitly called. -->
74         <meta-data
75             android:name="com.google.android.gms.ads.DELAY_APP_MEASUREMENT_INIT"
76             android:value="true"/>
77
78         <!-- The file provider is required to encrypt files with OpenKeychain. -->
79         <provider
80             android:name="androidx.core.content.FileProvider"
81             android:authorities="@string/file_provider"
82             android:exported="false"
83             android:grantUriPermissions="true" >
84
85             <meta-data
86                 android:name="android.support.FILE_PROVIDER_PATHS"
87                 android:resource="@xml/file_provider_paths" />
88         </provider>
89         
90         <!-- The label uses the short name so that it isn't truncated under the icon in the launcher on most phones.
91             The theme has to be defined here or an ugly title bar is displayed when the app launches.
92             `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
93             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
94             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
95             `android:launchMode="singleTask"` makes the app launch in a new task instead of inside the task of the program that sends it an intent.
96             It also makes it reuse an existing Privacy Browser activity if available instead of launching a new one.
97             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
98             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
99         <activity
100             android:name=".activities.MainWebViewActivity"
101             android:label="@string/short_name"
102             android:theme="@style/PrivacyBrowser"
103             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
104             android:launchMode="singleTask"
105             android:screenOrientation="fullUser"
106             android:persistableMode="persistNever"
107             tools:ignore="UnusedAttribute" >
108
109             <intent-filter>
110                 <action android:name="android.intent.action.MAIN" />
111                 <category android:name="android.intent.category.LAUNCHER" />
112             </intent-filter>
113
114             <!-- Process web intents. -->
115             <intent-filter>
116                 <action android:name="android.intent.action.VIEW" />
117
118                 <category android:name="android.intent.category.BROWSABLE" />
119                 <category android:name="android.intent.category.DEFAULT" />
120
121                 <data android:scheme="http" />
122                 <data android:scheme="https" />
123             </intent-filter>
124
125             <!-- Process content intents for text files. -->
126             <intent-filter>
127                 <action android:name="android.intent.action.VIEW" />
128
129                 <category android:name="android.intent.category.BROWSABLE" />
130                 <category android:name="android.intent.category.DEFAULT" />
131
132                 <data android:scheme="content" />
133                 <data android:mimeType="text/*" />
134             </intent-filter>
135
136             <!-- Process intents for text strings.  Sometimes URLs are presented this way. -->
137             <intent-filter>
138                 <action android:name="android.intent.action.SEND" />
139
140                 <category android:name="android.intent.category.DEFAULT" />
141
142                 <data android:mimeType="text/plain" />
143             </intent-filter>
144
145             <!-- Process intents for MHT archives. -->
146             <intent-filter>
147                 <action android:name="android.intent.action.VIEW" />
148
149                 <category android:name="android.intent.category.BROWSABLE" />
150                 <category android:name="android.intent.category.DEFAULT" />
151
152                 <data android:scheme="file" />
153                 <data android:scheme="content" />
154
155                 <data android:host="*" />
156
157                 <!-- In the path pattern syntax, `.*` is a wildcard.  Hence, this matches any file path that ends in `.mht`.  <https://developer.android.com/guide/topics/manifest/data-element#path>  -->
158                 <data android:pathPattern=".*.mht" />
159                 <data android:mimeType="*/*" />
160             </intent-filter>
161
162             <!-- Process web search intents. -->
163             <intent-filter>
164                 <action android:name="android.intent.action.WEB_SEARCH" />
165
166                 <category android:name="android.intent.category.BROWSABLE" />
167                 <category android:name="android.intent.category.DEFAULT" />
168             </intent-filter>
169         </activity>
170
171
172         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
173             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
174             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
175             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
176             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
177         <activity
178             android:name=".activities.BookmarksActivity"
179             android:label="@string/bookmarks"
180             android:parentActivityName=".activities.MainWebViewActivity"
181             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
182             android:screenOrientation="fullUser"
183             android:persistableMode="persistNever"
184             tools:ignore="UnusedAttribute" />
185
186         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
187             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
188             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
189             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
190             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
191         <activity
192             android:name=".activities.BookmarksDatabaseViewActivity"
193             android:label="@string/bookmarks_database_view"
194             android:parentActivityName=".activities.BookmarksActivity"
195             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
196             android:screenOrientation="fullUser"
197             android:persistableMode="persistNever"
198             tools:ignore="UnusedAttribute" />
199
200         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
201             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
202             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
203             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
204             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
205         <activity
206             android:name=".activities.RequestsActivity"
207             android:label="@string/requests"
208             android:parentActivityName=".activities.MainWebViewActivity"
209             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
210             android:screenOrientation="fullUser"
211             android:persistableMode="persistNever"
212             tools:ignore="UnusedAttribute" />
213
214         <!-- `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
215             `android:configChanges="keyboard|keyboardHidden"` makes the activity not reload when a bluetooth keyboard is activated/goes to sleep.
216             `android:windowSoftInputMode="stateAlwaysHidden"` keeps the keyboard from displaying when the screen is rotated and after the `AddDomainDialog` is dismissed.
217             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
218             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
219         <activity
220             android:name=".activities.DomainsActivity"
221             android:label="@string/domains"
222             android:parentActivityName=".activities.MainWebViewActivity"
223             android:configChanges="screenLayout|keyboard|keyboardHidden"
224             android:screenOrientation="fullUser"
225             android:windowSoftInputMode="stateAlwaysHidden"
226             android:persistableMode="persistNever"
227             tools:ignore="UnusedAttribute" />
228
229         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
230             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
231             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
232             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
233             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
234         <activity
235             android:name=".activities.SettingsActivity"
236             android:label="@string/settings"
237             android:parentActivityName=".activities.MainWebViewActivity"
238             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
239             android:screenOrientation="fullUser"
240             android:persistableMode="persistNever"
241             tools:ignore="UnusedAttribute" />
242
243         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
244             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
245             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
246             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
247             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
248         <activity
249             android:name=".activities.ImportExportActivity"
250             android:label="@string/import_export"
251             android:parentActivityName=".activities.MainWebViewActivity"
252             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
253             android:screenOrientation="fullUser"
254             android:persistableMode="persistNever"
255             tools:ignore="UnusedAttribute" />
256
257         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
258             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
259             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
260             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
261             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
262         <activity
263             android:name=".activities.LogcatActivity"
264             android:label="@string/logcat"
265             android:parentActivityName=".activities.MainWebViewActivity"
266             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
267             android:screenOrientation="fullUser"
268             android:persistableMode="persistNever"
269             tools:ignore="UnusedAttribute" />
270
271         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
272             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
273             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
274             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
275             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
276         <activity
277             android:name=".activities.GuideActivity"
278             android:label="@string/guide"
279             android:parentActivityName=".activities.MainWebViewActivity"
280             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
281             android:screenOrientation="fullUser"
282             android:persistableMode="persistNever"
283             tools:ignore="UnusedAttribute" />
284
285         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
286             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
287             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
288             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
289             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
290         <activity
291             android:name=".activities.AboutActivity"
292             android:label="@string/about_privacy_browser"
293             android:parentActivityName=".activities.MainWebViewActivity"
294             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
295             android:screenOrientation="fullUser"
296             android:persistableMode="persistNever"
297             tools:ignore="UnusedAttribute" />
298
299         <!-- `android:configChanges="orientation|screenSize"` makes the activity not restart when the orientation changes, which preserves scroll location in the WebView.
300             `android:configChanges="screenLayout"` makes the activity not restart when entering or exiting split screen mode.
301             `android:configChanges="keyboard|keyboardHidden"` makes the activity not restart when a bluetooth keyboard is activated/goes to sleep.
302             `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
303             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
304         <activity
305             android:name=".activities.ViewSourceActivity"
306             android:label="@string/view_source"
307             android:parentActivityName=".activities.MainWebViewActivity"
308             android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden"
309             android:screenOrientation="fullUser"
310             android:persistableMode="persistNever"
311             tools:ignore="UnusedAttribute" />
312     </application>
313 </manifest>