]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/AndroidManifest.xml
429fa66e0252980a201e4bb71f3e22499a16fc01
[PrivacyBrowserAndroid.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright 2015-2016 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 homescreen shortcuts. -->
29     <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
30
31
32     <!-- Support Chromebooks that don't have a touch screen. -->
33     <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
34
35
36     <!-- For API >= 23, app data is automatically backed up to Google cloud servers unless `android:allowBackup="false"` and `android:fullBackupContent="false"` is set. -->
37     <application
38         android:label="@string/privacy_browser"
39         android:icon="@mipmap/privacy_browser"
40         android:theme="@style/PrivacyBrowser"
41         android:allowBackup="false"
42         android:fullBackupContent="false"
43         android:supportsRtl="true" >
44
45         <!-- 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> -->
46         <meta-data
47             android:name="android.webkit.WebView.MetricsOptOut"
48             android:value="true" />
49
50         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes, which preserves scroll location in the WebView.
51             `android:launchMode="singleTask"` makes the app launch in a new task instead of inside the task of the program that sends it an intent.
52             It also makes it reuse an existing Privacy Browser activity if available instead of launching a new one.
53             `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
54             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
55         <activity
56             android:name=".activities.MainWebViewActivity"
57             android:label="@string/privacy_browser"
58             android:configChanges="orientation|screenSize"
59             android:launchMode="singleTask"
60             android:screenOrientation="fullUser"
61             android:persistableMode="persistNever"
62             tools:ignore="UnusedAttribute" >
63
64             <intent-filter>
65                 <action android:name="android.intent.action.MAIN" />
66                 <category android:name="android.intent.category.LAUNCHER" />
67             </intent-filter>
68
69             <!-- `android.intent.action.VIEW` with the two data schemes enables processing of web intents. -->
70             <intent-filter>
71                 <action android:name="android.intent.action.VIEW" />
72                 <category android:name="android.intent.category.BROWSABLE" />
73                 <category android:name="android.intent.category.DEFAULT" />
74                 <data android:scheme="http" />
75                 <data android:scheme="https" />
76             </intent-filter>
77         </activity>
78
79
80         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
81             `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
82             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
83         <activity
84             android:name=".activities.BookmarksActivity"
85             android:label="@string/bookmarks"
86             android:theme="@style/PrivacyBrowser.SecondaryActivity"
87             android:parentActivityName=".activities.MainWebViewActivity"
88             android:configChanges="orientation|screenSize"
89             android:screenOrientation="fullUser"
90             android:persistableMode="persistNever"
91             tools:ignore="UnusedAttribute" />
92
93         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
94             `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
95             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
96         <activity
97             android:name=".activities.BookmarksDatabaseViewActivity"
98             android:label="@string/bookmarks_database_view"
99             android:theme="@style/PrivacyBrowser.SecondaryActivity"
100             android:parentActivityName=".activities.BookmarksActivity"
101             android:configChanges="orientation|screenSize"
102             android:screenOrientation="fullUser"
103             android:persistableMode="persistNever"
104             tools:ignore="UnusedAttribute" />
105
106         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
107             `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
108             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
109         <activity
110             android:name=".activities.SettingsActivity"
111             android:label="@string/privacy_browser_settings"
112             android:theme="@style/Settings"
113             android:parentActivityName=".activities.MainWebViewActivity"
114             android:configChanges="orientation|screenSize"
115             android:screenOrientation="fullUser"
116             android:persistableMode="persistNever"
117             tools:ignore="UnusedAttribute" />
118
119         <!-- `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
120             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
121         <activity
122             android:name=".activities.DomainsActivity"
123             android:label="@string/domains"
124             android:theme="@style/PrivacyBrowser.SecondaryActivity"
125             android:parentActivityName=".activities.MainWebViewActivity"
126             android:screenOrientation="fullUser"
127             android:persistableMode="persistNever"
128             tools:ignore="UnusedAttribute" />
129
130         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
131             `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
132             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
133         <activity
134             android:name=".activities.DomainSettingsActivity"
135             android:label="@string/domain_settings"
136             android:theme="@style/PrivacyBrowser.SecondaryActivity"
137             android:parentActivityName=".activities.DomainsActivity"
138             android:configChanges="orientation|screenSize"
139             android:screenOrientation="fullUser"
140             android:persistableMode="persistNever"
141             tools:ignore="UnusedAttribute" />
142
143         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
144             `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
145             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
146         <activity
147             android:name=".activities.GuideActivity"
148             android:label="@string/privacy_browser_guide"
149             android:theme="@style/PrivacyBrowser.SecondaryActivity"
150             android:parentActivityName=".activities.MainWebViewActivity"
151             android:configChanges="orientation|screenSize"
152             android:screenOrientation="fullUser"
153             android:persistableMode="persistNever"
154             tools:ignore="UnusedAttribute" />
155
156         <!-- `android:configChanges="orientation|screenSize"` makes the activity not reload when the orientation changes.
157             `android:persistableMode="persistNever"` removes Privacy Browser from the recents screen on a device reboot.
158             `tools:ignore="unusedAttribute"` removes the lint warning that `persistableMode` does not apply to API < 21. -->
159         <activity
160             android:name=".activities.AboutActivity"
161             android:label="@string/about_privacy_browser"
162             android:theme="@style/PrivacyBrowser.SecondaryActivity"
163             android:parentActivityName=".activities.MainWebViewActivity"
164             android:configChanges="orientation|screenSize"
165             android:screenOrientation="fullUser"
166             android:persistableMode="persistNever"
167             tools:ignore="UnusedAttribute" />
168     </application>
169 </manifest>