-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
141 lines (123 loc) · 5.62 KB
/
AndroidManifest.xml
File metadata and controls
141 lines (123 loc) · 5.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?xml version="1.0" encoding="utf-8"?>
<!--
Zirco Browser for Android
Copyright (C) 2010 J. Devauchelle and contributors.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 3 as published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.zirco"
android:installLocation="auto"
android:versionName="0.4.4"
android:versionCode="18"
>
<application
android:icon="@drawable/icon"
android:label="@string/ApplicationName"
android:debuggable="false"
>
<activity
android:name=".ui.activities.MainActivity"
android:label="@string/ApplicationName"
android:launchMode="singleTask"
android:configChanges="keyboardHidden|orientation"
>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
</intent-filter>
</activity>
<activity
android:name=".ui.activities.AboutActivity"
android:theme="@android:style/Theme.Dialog"
android:label="@string/AboutActivity.Title"
/>
<activity
android:name=".ui.activities.EditBookmarkActivity"
android:theme="@android:style/Theme.Dialog"
android:label="@string/EditBookmarkActivity.Title"
/>
<activity android:name=".ui.activities.BookmarksListActivity"/>
<activity android:name=".ui.activities.HistoryListActivity"/>
<activity android:name=".ui.activities.DownloadsListActivity"/>
<activity android:name=".ui.activities.AdBlockerWhiteListActivity"/>
<activity
android:name=".ui.activities.BookmarksHistoryActivity"
android:configChanges="keyboardHidden|orientation"
/>
<activity
android:name=".ui.activities.ChangelogActivity"
android:theme="@android:style/Theme.Dialog"
android:label="@string/ChangelogActivity.Title"
/>
<activity android:name=".ui.activities.preferences.PreferencesActivity"/>
<activity
android:name=".ui.activities.preferences.HomepagePreferenceActivity"
android:theme="@android:style/Theme.Dialog"
android:label="@string/HomepagePreferenceActivity.Title"
/>
<activity
android:name=".ui.activities.preferences.SearchUrlPreferenceActivity"
android:theme="@android:style/Theme.Dialog"
android:label="@string/SearchUrlPreferenceActivity.Title"
/>
<activity
android:name=".ui.activities.preferences.UserAgentPreferenceActivity"
android:theme="@android:style/Theme.Dialog"
android:label="@string/UserAgentPreferenceActivity.Title"
/>
<activity android:name=".ui.activities.MobileViewListActivity"/>
<activity android:name=".ui.activities.WeaveBookmarksListActivity"/>
<activity android:name=".ui.activities.preferences.WeavePreferencesActivity"/>
<activity
android:name=".ui.activities.preferences.WeaveServerPreferenceActivity"
android:theme="@android:style/Theme.Dialog"
android:label="@string/WeaveServerPreferenceActivity.Title"
/>
<provider
android:name=".providers.ZircoBookmarksContentProvider"
android:authorities="org.zirco.providers.zircobookmarkscontentprovider"
/>
<provider
android:name=".providers.WeaveContentProvider"
android:authorities="org.zirco.providers.weavecontentprovider"
/>
<receiver
android:name="org.zirco.utils.ProxyChangeReceiver">
<intent-filter>
<action
android:name="android.intent.action.PROXY_CHANGE"/>
</intent-filter>
</receiver>
</application>
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17"
/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS"/>
<uses-permission android:name="com.android.browser.permission.WRITE_HISTORY_BOOKMARKS"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-feature
android:name="android.hardware.touchscreen"
android:required="true"
/>
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"
/>
</manifest>