]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/AndroidManifest.xml
Add OpenPGP encrypted export. https://redmine.stoutner.com/issues/338
[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             <!-- `android.intent.action.VIEW` with the two data schemes enables processing of web intents. -->
102             <intent-filter>
103                 <action android:name="android.intent.action.VIEW" />
104                 <category android:name="android.intent.category.BROWSABLE" />
105                 <category android:name="android.intent.category.DEFAULT" />
106                 <data android:scheme="http" />
107                 <data android:scheme="https" />
108             </intent-filter>
109         </activity>
110
111
112         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
113              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
114              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
115         <activity
116             android:name=".activities.BookmarksActivity"
117             android:label="@string/bookmarks"
118             android:parentActivityName=".activities.MainWebViewActivity"
119             android:configChanges="orientation|screenSize"
120             android:screenOrientation="fullUser"
121             android:persistableMode="persistNever"
122             tools:ignore="UnusedAttribute" />
123
124         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
125              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
126              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
127         <activity
128             android:name=".activities.BookmarksDatabaseViewActivity"
129             android:label="@string/bookmarks_database_view"
130             android:parentActivityName=".activities.BookmarksActivity"
131             android:configChanges="orientation|screenSize"
132             android:screenOrientation="fullUser"
133             android:persistableMode="persistNever"
134             tools:ignore="UnusedAttribute" />
135
136         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
137              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
138              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
139         <activity
140             android:name=".activities.RequestsActivity"
141             android:label="@string/requests"
142             android:parentActivityName=".activities.MainWebViewActivity"
143             android:configChanges="orientation|screenSize"
144             android:screenOrientation="fullUser"
145             android:persistableMode="persistNever"
146             tools:ignore="UnusedAttribute" />
147
148         <!-- `android:windowSoftInputMode="stateAlwaysHidden"` keeps the keyboard from displaying when the screen is rotated and after the `AddDomainDialog` is dismissed.
149              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
150              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
151         <activity
152             android:name=".activities.DomainsActivity"
153             android:label="@string/domains"
154             android:parentActivityName=".activities.MainWebViewActivity"
155             android:screenOrientation="fullUser"
156             android:windowSoftInputMode="stateAlwaysHidden"
157             android:persistableMode="persistNever"
158             tools:ignore="UnusedAttribute" />
159
160         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
161              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
162              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
163         <activity
164             android:name=".activities.SettingsActivity"
165             android:label="@string/privacy_browser_settings"
166             android:parentActivityName=".activities.MainWebViewActivity"
167             android:configChanges="orientation|screenSize"
168             android:screenOrientation="fullUser"
169             android:persistableMode="persistNever"
170             tools:ignore="UnusedAttribute" />
171
172         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
173              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
174              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
175         <activity
176             android:name=".activities.ImportExportActivity"
177             android:label="@string/import_export"
178             android:parentActivityName=".activities.MainWebViewActivity"
179             android:configChanges="orientation|screenSize"
180             android:screenOrientation="fullUser"
181             android:persistableMode="persistNever"
182             tools:ignore="UnusedAttribute" />
183
184         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
185              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
186              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
187         <activity
188             android:name=".activities.GuideActivity"
189             android:label="@string/privacy_browser_guide"
190             android:parentActivityName=".activities.MainWebViewActivity"
191             android:configChanges="orientation|screenSize"
192             android:screenOrientation="fullUser"
193             android:persistableMode="persistNever"
194             tools:ignore="UnusedAttribute" />
195
196         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
197              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
198              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
199         <activity
200             android:name=".activities.AboutActivity"
201             android:label="@string/about_privacy_browser"
202             android:parentActivityName=".activities.MainWebViewActivity"
203             android:configChanges="orientation|screenSize"
204             android:screenOrientation="fullUser"
205             android:persistableMode="persistNever"
206             tools:ignore="UnusedAttribute" />
207
208         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
209              `android:persistableMode="persistNever"` removes Privacy Browser from the recent apps list on a device reboot.
210              `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
211         <activity
212             android:name=".activities.ViewSourceActivity"
213             android:label="@string/view_source"
214             android:parentActivityName=".activities.MainWebViewActivity"
215             android:configChanges="orientation|screenSize"
216             android:screenOrientation="fullUser"
217             android:persistableMode="persistNever"
218             tools:ignore="UnusedAttribute" />
219     </application>
220 </manifest>