-
Notifications
You must be signed in to change notification settings - Fork 102
/
AndroidManifest.xml
92 lines (74 loc) · 3.99 KB
/
AndroidManifest.xml
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
<?xml version="1.0" encoding="utf-8"?>
<!--
Tint Browser for Android
Copyright (C) 2012 - to infinity and beyond 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.tint"
android:installLocation="auto"
android:versionCode="10"
android:versionName="1.8">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="17" />
<permission android:name="org.tint.permissions.bookmarksprovider.READ"
android:label="@string/PermissionReadBookmarksLabel"
android:description="@string/PermissionReadBookmarksDescription"
android:permissionGroup="android.permission-group.PERSONAL_INFO"
android:protectionLevel="dangerous" />
<permission android:name="org.tint.permissions.bookmarksprovider.WRITE"
android:label="@string/PermissionWriteBookmarksLabel"
android:description="@string/PermissionWriteBookmarksDescription"
android:permissionGroup="android.permission-group.PERSONAL_INFO"
android:protectionLevel="dangerous" />
<permission android:name="org.tint.permissions.services.ADDONS"
android:label="@string/PermissionBindAddonServiceLabel"
android:description="@string/PermissionBindAddonServiceDescription"
android:protectionLevel="dangerous" />
<uses-permission android:name="org.tint.permissions.services.ADDONS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/ApplicationName"
android:theme="@style/ApplicationTheme"
android:allowBackup="true"
android:hardwareAccelerated="true">
<activity
android:label="@string/ApplicationName"
android:name=".ui.activities.TintBrowserActivity"
android:launchMode="singleTask"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
<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.preferences.PreferencesActivity" android:label="@string/PreferencesActivityTitle"></activity>
<activity android:name=".ui.activities.BookmarksActivity"></activity>
<activity android:name=".ui.activities.EditBookmarkActivity" android:theme="@android:style/Theme.Holo.DialogWhenLarge"></activity>
<provider
android:name=".providers.BookmarksProvider"
android:authorities="org.tint.providers.bookmarksprovider"
android:exported="true"
android:readPermission="org.tint.permissions.bookmarksprovider.READ"
android:writePermission="org.tint.permissions.bookmarksprovider.WRITE" />
<provider
android:name=".providers.SslExceptionsProvider"
android:authorities="org.tint.providers.sslexceptionsprovider"
android:exported="false" />
</application>
</manifest>