-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathAndroidManifest.xml
127 lines (111 loc) · 4.56 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
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.peerblock"
android:versionCode="1"
android:versionName="1.04" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.activities.PeerBlock"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation|screenSize" >
<!-- <intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter> -->
</activity>
<activity
android:name="com.activities.UpdateConfigActivity"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.activities.AppHistoryActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<!-- -->
<activity
android:name="com.activities.LastBlockedHostActivity"
android:label="@string/app_name" >
<intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.activities.MainActivity"
/>
</intent-filter>
</activity>
<activity
android:name="com.fragments.HistoryFragment"
android:label="@string/app_name" >
<intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.activities.MainActivity"
/>
</intent-filter>
</activity>
<activity
android:name="com.fragments.ChangeLogFragment"
android:label="@string/app_name" >
<intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.activities.MainActivity"
/>
</intent-filter>
</activity>
<activity
android:name="com.fragments.AboutFragment"
android:label="@string/app_name" >
<intent-filter>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.activities.MainActivity"
/>
</intent-filter>
</activity>
<activity
android:name="com.activities.MainActivity"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation|screenSize" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<provider
android:name=".PeerBlockProvider"
android:authorities="com.peerblock.provider"
android:enabled="true"
android:excludeFromRecents="true"
android:exported="true"
android:process=":provider"
android:syncable="false" >
</provider>
<receiver android:name=".BootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<receiver android:name=".PeerReceiver" >
<intent-filter>
<action android:name="com.peerblock.PeerBlockReceiver" />
</intent-filter>
</receiver>
<meta-data android:value="true" android:name="xposedmodule"/>
<meta-data android:value="2.0*" android:name="xposedminversion"/>
<meta-data android:value="PeerBlock For Android, The quieter you become, The less you're able to see" android:name="xposeddescription"/>
</application>
</manifest>