|
0
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<manifest
|
|
|
3 |
package="hh.dejsem"
|
|
|
4 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
5 |
>
|
|
|
6 |
|
|
|
7 |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
8 |
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
9 |
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
|
|
10 |
<uses-permission android:name="android.permission.SEND_SMS"/>
|
|
|
11 |
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
|
12 |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
13 |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
14 |
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
|
|
15 |
|
|
|
16 |
<!--<provider
|
|
|
17 |
android:name="dejsem.fileprovider"
|
|
|
18 |
android:authorities="hh.fileprovider"
|
|
|
19 |
android:grantUriPermissions="true"/>-->
|
|
|
20 |
|
|
|
21 |
<application
|
|
|
22 |
android:allowBackup="true"
|
|
|
23 |
android:icon="@mipmap/ic_launcher"
|
|
|
24 |
android:label="@string/app_name"
|
|
|
25 |
android:theme="@style/ThemeDej"
|
|
|
26 |
>
|
|
|
27 |
|
|
|
28 |
<activity android:name=".Main">
|
|
|
29 |
<intent-filter>
|
|
|
30 |
<action android:name="android.intent.action.MAIN"/>
|
|
|
31 |
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
32 |
</intent-filter>
|
|
|
33 |
</activity>
|
|
|
34 |
|
|
|
35 |
<activity android:name=".fm.UploadAct">
|
|
|
36 |
|
|
|
37 |
<intent-filter android:label="upload to server">
|
|
|
38 |
<action android:name="android.intent.action.SEND" />
|
|
|
39 |
<action android:name="android.intent.action.SENDTO" />
|
|
|
40 |
<category android:name="android.intent.category.DEFAULT" />
|
|
|
41 |
<data android:mimeType="*/*" />
|
|
|
42 |
</intent-filter>
|
|
|
43 |
|
|
|
44 |
<!--<intent-filter>
|
|
|
45 |
<action android:name="android.intent.action.VIEW" />
|
|
|
46 |
<category android:name="android.intent.category.DEFAULT" />
|
|
|
47 |
<data android:mimeType="*/*" />
|
|
|
48 |
</intent-filter>-->
|
|
|
49 |
|
|
|
50 |
<!--
|
|
|
51 |
<data android:scheme="file"/>
|
|
|
52 |
<data android:scheme="content"/>
|
|
|
53 |
-->
|
|
|
54 |
|
|
|
55 |
<!--
|
|
|
56 |
<data android:mimeType="text/*"/>
|
|
|
57 |
<data android:mimeType="image/*"/>
|
|
|
58 |
<data android:mimeType="audio/*"/>
|
|
|
59 |
<data android:mimeType="video/*"/>
|
|
|
60 |
-->
|
|
|
61 |
|
|
|
62 |
<!--
|
|
|
63 |
<intent-filter>
|
|
|
64 |
<action android:name="android.intent.action.SEND"/>
|
|
|
65 |
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
66 |
<data android:mimeType="text/*"/>
|
|
|
67 |
<data android:mimeType="image/*"/>
|
|
|
68 |
<data android:mimeType="audio/*"/>
|
|
|
69 |
<data android:mimeType="video/*"/>
|
|
|
70 |
</intent-filter>
|
|
|
71 |
-->
|
|
|
72 |
|
|
|
73 |
<!--
|
|
|
74 |
<intent-filter>
|
|
|
75 |
<action android:name="android.intent.action.SEND"/>
|
|
|
76 |
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
77 |
<data android:scheme="file"/>
|
|
|
78 |
<data android:scheme="content"/>
|
|
|
79 |
</intent-filter>
|
|
|
80 |
-->
|
|
|
81 |
|
|
|
82 |
<!--
|
|
|
83 |
<intent-filter>
|
|
|
84 |
<action android:name="android.intent.action.SEND"/>
|
|
|
85 |
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
86 |
</intent-filter>
|
|
|
87 |
-->
|
|
|
88 |
|
|
|
89 |
<!--
|
|
|
90 |
<intent-filter>
|
|
|
91 |
<action android:name="android.intent.action.VIEW"/>
|
|
|
92 |
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
93 |
<data android:mimeType="text/*"/>
|
|
|
94 |
<data android:mimeType="image/*"/>
|
|
|
95 |
<data android:mimeType="audio/*"/>
|
|
|
96 |
<data android:mimeType="video/*"/>
|
|
|
97 |
<data android:scheme="file"/>
|
|
|
98 |
<data android:scheme="content"/>
|
|
|
99 |
</intent-filter>
|
|
|
100 |
-->
|
|
|
101 |
|
|
|
102 |
<!--
|
|
|
103 |
<data android:mimeType="text/*"/>
|
|
|
104 |
<data android:mimeType="image/*"/>
|
|
|
105 |
<data android:mimeType="audio/*"/>
|
|
|
106 |
<data android:mimeType="video/*"/>
|
|
|
107 |
-->
|
|
|
108 |
|
|
|
109 |
<!--
|
|
|
110 |
<intent-filter>
|
|
|
111 |
<action android:name="android.intent.action.VIEW"/>
|
|
|
112 |
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
113 |
<data android:scheme="file"/>
|
|
|
114 |
<data android:scheme="content"/>
|
|
|
115 |
</intent-filter>
|
|
|
116 |
-->
|
|
|
117 |
|
|
|
118 |
<!--
|
|
|
119 |
<intent-filter>
|
|
|
120 |
<action android:name="android.intent.action.VIEW"/>
|
|
|
121 |
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
122 |
</intent-filter>
|
|
|
123 |
-->
|
|
|
124 |
|
|
|
125 |
</activity>
|
|
|
126 |
|
|
|
127 |
<!--<activity
|
|
|
128 |
android:name=".TransferAlert"
|
|
|
129 |
android:excludeFromRecents="true"
|
|
|
130 |
android:noHistory="true"
|
|
|
131 |
android:taskAffinity=""
|
|
|
132 |
android:theme="@style/ThemeDej.Transparent"
|
|
|
133 |
/>-->
|
|
|
134 |
|
|
|
135 |
<activity
|
|
|
136 |
android:name=".fm.TransferAlert"
|
|
|
137 |
android:theme="@style/ThemeDej.Transparent"
|
|
|
138 |
/>
|
|
|
139 |
<!--android:theme="@style/ThemeDej.Transparent"-->
|
|
|
140 |
|
|
|
141 |
<activity
|
|
|
142 |
android:name=".fm.ProgressMonitor"
|
|
|
143 |
android:excludeFromRecents="true"
|
|
|
144 |
android:noHistory="true"
|
|
|
145 |
android:taskAffinity=""
|
|
|
146 |
android:theme="@style/ThemeDej.Transparent"
|
|
|
147 |
/>
|
|
|
148 |
|
|
|
149 |
<receiver android:name=".BroadcastReceiver">
|
|
|
150 |
<intent-filter android:label="receiver B">
|
|
|
151 |
<action android:name="android.intent.action.SEND" />
|
|
|
152 |
<action android:name="android.intent.action.SENDTO" />
|
|
|
153 |
<category android:name="android.intent.category.DEFAULT" />
|
|
|
154 |
<data android:mimeType="*/*" />
|
|
|
155 |
</intent-filter>
|
|
|
156 |
</receiver>
|
|
|
157 |
|
|
|
158 |
<activity android:name=".SdUri"/>
|
|
|
159 |
|
|
|
160 |
<activity android:name=".hack.HackUDP"/>
|
|
|
161 |
|
|
|
162 |
<activity android:name=".hack.HackNotifListAct"/>
|
|
|
163 |
|
|
|
164 |
<activity android:name=".hack.HackContextMenu"/>
|
|
|
165 |
|
|
|
166 |
<activity android:name=".hack.HackNotifDialogAct"/>
|
|
|
167 |
|
|
|
168 |
<activity android:name=".hack.HackA">
|
|
|
169 |
|
|
|
170 |
<!--
|
|
|
171 |
<intent-filter
|
|
|
172 |
android:label="dej-expose"
|
|
|
173 |
>
|
|
|
174 |
<action android:name="android.intent.action.SEND" />
|
|
|
175 |
<action android:name="android.intent.action.SENDTO" />
|
|
|
176 |
<category android:name="android.intent.category.DEFAULT" />
|
|
|
177 |
<data android:mimeType="*/*" />
|
|
|
178 |
</intent-filter>
|
|
|
179 |
|
|
|
180 |
<intent-filter
|
|
|
181 |
android:label="dej-inspect"
|
|
|
182 |
>
|
|
|
183 |
<action android:name="android.intent.action.VIEW" />
|
|
|
184 |
<category android:name="android.intent.category.DEFAULT" />
|
|
|
185 |
<data android:mimeType="*/*" />
|
|
|
186 |
</intent-filter>
|
|
|
187 |
-->
|
|
|
188 |
|
|
|
189 |
</activity>
|
|
|
190 |
|
|
|
191 |
</application>
|
|
|
192 |
|
|
|
193 |
</manifest> |