|
@ -1,297 +1,298 @@
|
1
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
3
|
|
package="com.ai.ipu.show"
|
4
|
|
android:versionCode="1"
|
5
|
|
android:versionName="3.0.20170216" >
|
6
|
|
|
7
|
|
<uses-sdk
|
8
|
|
android:minSdkVersion="8"
|
9
|
|
android:targetSdkVersion="22" />
|
10
|
|
|
11
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
12
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
13
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
14
|
|
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
|
15
|
|
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
16
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
17
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
18
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
19
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
20
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
21
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
22
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
23
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
24
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
25
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
26
|
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
27
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
28
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
29
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
30
|
|
<uses-permission android:name="android.permission.VIBRATE" /> <!-- 震动权限 -->
|
31
|
|
<uses-feature android:name="android.hardware.camera" /> <!-- 使用照相机权限 -->
|
32
|
|
<uses-feature android:name="android.hardware.camera.autofocus" /> <!-- 自动聚焦权限 -->
|
33
|
|
<uses-permission android:name="android.permission.FLASHLIGHT" /> <!-- 开启闪光灯权限 -->
|
34
|
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> <!-- 蓝牙 -->
|
35
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
36
|
|
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
|
37
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
38
|
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
|
39
|
|
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
|
40
|
|
|
41
|
|
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
|
42
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
43
|
|
|
44
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /><!-- 悬浮菜单 -->
|
45
|
|
<!-- NFC -->
|
46
|
|
<uses-permission android:name="android.permission.NFC" />
|
47
|
|
<uses-feature android:name="android.hardware.nfc" android:required="true" />
|
48
|
|
|
49
|
|
|
50
|
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
51
|
|
|
52
|
|
|
53
|
|
<!--
|
54
|
|
android:name="com.wade.mobile.frame.IpuBasicApplication"
|
55
|
|
-->
|
56
|
|
<application
|
57
|
|
android:allowBackup="false"
|
58
|
|
android:icon="@drawable/ic_launcher"
|
59
|
|
android:label="@string/app_name"
|
60
|
|
android:theme="@style/AppTheme"
|
61
|
|
android:hardwareAccelerated="true"> <!-- Application级应用加速,可以降低到Activity级 -->
|
62
|
|
<!-- <meta-data
|
63
|
|
android:name="com.amap.api.v2.apikey"
|
64
|
|
android:value="6afee5dced4c3b3a43c0feb11399bded"/> -->
|
65
|
|
<meta-data
|
66
|
|
android:name="com.amap.api.v2.apikey"
|
67
|
|
android:value="6afee5dced4c3b3a43c0feb11399bded"/>
|
68
|
|
<activity
|
69
|
|
android:name="com.ai.ipu.display.MainActivity"
|
70
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
71
|
|
android:label="@string/app_name"
|
72
|
|
android:screenOrientation="portrait"
|
73
|
|
android:windowSoftInputMode="stateHidden|adjustResize" >
|
74
|
|
<intent-filter>
|
75
|
|
<action android:name="android.intent.action.MAIN" />
|
76
|
|
|
77
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
78
|
|
</intent-filter>
|
79
|
|
</activity>
|
80
|
|
|
81
|
|
<activity
|
82
|
|
android:name="com.wade.mobile.common.nfc.activity.NfcActivity">
|
83
|
|
|
84
|
|
<!-- <intent-filter>
|
85
|
|
<action android:name="android.nfc.action.TECH_DISCOVERED" />
|
86
|
|
</intent-filter>
|
87
|
|
|
88
|
|
<meta-data
|
89
|
|
android:name="android.nfc.action.TECH_DISCOVERED"
|
90
|
|
android:resource="@xml/nfc_tech_filter" />
|
91
|
|
|
92
|
|
<intent-filter>
|
93
|
|
<action android:name="android.nfc.action.TAG_DISCOVERED" />
|
94
|
|
|
95
|
|
<category android:name="android.intent.category.DEFAULT" />
|
96
|
|
</intent-filter> -->
|
97
|
|
</activity>
|
98
|
|
|
99
|
|
<!-- 注册推送服务 -->
|
100
|
|
<service android:name="com.ai.mobile.im.PushService" android:process=":WmPush" />
|
101
|
|
|
102
|
|
<!-- 对话框 -->
|
103
|
|
<activity
|
104
|
|
android:name="com.wade.mobile.ui.activity.CustomDialogActivity"
|
105
|
|
android:theme="@style/CustomDialogTheme" >
|
106
|
|
</activity>
|
107
|
|
<!-- 窗口 -->
|
108
|
|
<activity
|
109
|
|
android:name="com.wade.mobile.ui.activity.CustomWindowActivity">
|
110
|
|
</activity>
|
111
|
|
<!-- openUrl -->
|
112
|
|
<activity
|
113
|
|
android:name="com.wade.mobile.ui.activity.OpenUrlActivity">
|
114
|
|
</activity>
|
115
|
|
<!-- 打开自定义浏览器 -->
|
116
|
|
<activity
|
117
|
|
android:name="com.wade.mobile.common.browser.BrowserActivity">
|
118
|
|
</activity>
|
119
|
|
<!-- 侧滑菜单 -->
|
120
|
|
<activity android:name="com.wade.mobile.ui.activity.SlidingMenuActivity"
|
121
|
|
android:theme="@style/SlidingMenuTheme" >
|
122
|
|
</activity>
|
123
|
|
<!-- 蓝牙分享 -->
|
124
|
|
<!--
|
125
|
|
<activity
|
126
|
|
android:name="com.wade.mobile.common.bluetooth.activity.ShareByBluetoothActivity"
|
127
|
|
android:theme="@style/ShareApkDialogTheme" >
|
128
|
|
</activity>
|
129
|
|
-->
|
130
|
|
<activity
|
131
|
|
android:name="com.ai.ipu.bluetooth.activity.ShareByBluetoothActivity"
|
132
|
|
android:theme="@style/ShareApkDialogTheme">
|
133
|
|
</activity>
|
134
|
|
<!-- 二维码扫描 -->
|
135
|
|
<!--
|
136
|
|
<activity
|
137
|
|
android:name="com.wade.mobile.common.scan.activity.CaptureActivity"
|
138
|
|
android:configChanges="orientation|keyboardHidden"
|
139
|
|
android:screenOrientation="portrait" >
|
140
|
|
</activity>
|
141
|
|
-->
|
142
|
|
<!-- 单个扫码 -->
|
143
|
|
<!-- <activity
|
144
|
|
android:name="com.ai.ipu.scan.activity.CaptureSingleActivity"
|
145
|
|
android:configChanges="orientation|keyboardHidden"
|
146
|
|
android:screenOrientation="portrait" >
|
147
|
|
</activity> -->
|
148
|
|
<!-- 多个扫码 -->
|
149
|
|
<!-- <activity
|
150
|
|
android:name="com.ai.ipu.scan.activity.CaptureMultipleActivity"
|
151
|
|
android:configChanges="orientation|keyboardHidden"
|
152
|
|
android:screenOrientation="portrait" >
|
153
|
|
</activity> -->
|
154
|
|
<!-- 音乐播放服务 -->
|
155
|
|
<service android:name="com.wade.mobile.common.audio.play.AudioPlayerService" />
|
156
|
|
<!-- 录制声音
|
157
|
|
<activity
|
158
|
|
android:name="com.wade.mobile.common.audio.activity.AudioRecorderActivity"
|
159
|
|
android:theme="@style/AudioDialogTheme" >
|
160
|
|
</activity> -->
|
161
|
|
<activity
|
162
|
|
android:name="com.wade.mobile.common.simplemedia.activity.SARecorder"
|
163
|
|
android:theme="@style/AudioDialogTheme" >
|
164
|
|
</activity>
|
165
|
|
<!-- 播放音乐 -->
|
166
|
|
<activity
|
167
|
|
android:name="com.wade.mobile.common.audio.activity.AudioPlayerActivity"
|
168
|
|
android:theme="@style/AudioDialogTheme" >
|
169
|
|
</activity>
|
170
|
|
<!-- 标记地图 -->
|
171
|
|
<!--
|
172
|
|
<activity android:name="com.wade.mobile.common.map.activity.MarkMapActivity">
|
173
|
|
</activity>
|
174
|
|
-->
|
175
|
|
<activity android:name="com.ai.ipu.map.activity.MarkMapActivity">
|
176
|
|
</activity>
|
177
|
|
<!-- 通讯录UI -->
|
178
|
|
<activity android:name="com.wade.mobile.common.contacts.activity.ContactsActivity">
|
179
|
|
</activity>
|
180
|
|
<!-- 设定位置 -->
|
181
|
|
<!--
|
182
|
|
<activity
|
183
|
|
android:name="com.wade.mobile.common.map.activity.SelectLocationActivity"
|
184
|
|
android:screenOrientation="portrait" >
|
185
|
|
</activity>
|
186
|
|
-->
|
187
|
|
<activity
|
188
|
|
android:name="com.ai.ipu.map.activity.SelectLocationActivity"
|
189
|
|
android:screenOrientation="portrait">
|
190
|
|
</activity>
|
191
|
|
<!-- 键盘 -->
|
192
|
|
<activity android:name="com.wade.mobile.common.keyboard.KeyboardActivity"
|
193
|
|
android:theme="@android:style/Theme.Translucent">
|
194
|
|
</activity>
|
195
|
|
<!-- 手势锁 -->
|
196
|
|
<activity android:name="com.wade.mobile.common.screenlock.ScreenUnlockActivity"
|
197
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
198
|
|
</activity>
|
199
|
|
<activity android:name="com.wade.mobile.common.screenlock.SetScreenLockActivity"
|
200
|
|
android:theme="@android:style/Theme.NoTitleBar">
|
201
|
|
</activity>
|
202
|
|
<!-- 提示对话框 -->
|
203
|
|
<activity android:name="com.ai.ipu.mobilealertdialog.activity.AlertDialogActivity"></activity>
|
204
|
|
<!-- 百度地图 -->
|
205
|
|
<meta-data
|
206
|
|
android:name="com.baidu.lbsapi.API_KEY"
|
207
|
|
android:value="glzX2yGOgROP15Sz15wwpBvMTnXAQ9fG" />
|
208
|
|
<!--百度的key根据Android的KeyStore生成,因此需要根据本地环境生成-->
|
209
|
|
<activity
|
210
|
|
android:name="com.ai.ipu.baidumap.activity.BDMapActivity"
|
211
|
|
android:screenOrientation="portrait">
|
212
|
|
</activity>
|
213
|
|
<activity
|
214
|
|
android:name="com.ai.ipu.baidumap.activity.PoiSearchAcitivty"
|
215
|
|
android:screenOrientation="portrait">
|
216
|
|
</activity>
|
217
|
|
<activity
|
218
|
|
android:name="com.ai.ipu.baidumap.activity.LbsSearchActivity"
|
219
|
|
android:screenOrientation="portrait">
|
220
|
|
</activity>
|
221
|
|
|
222
|
|
<service android:name="com.baidu.location.f"
|
223
|
|
android:enabled="true" android:process=":remote">
|
224
|
|
</service>
|
225
|
|
<!-- YunBa Start -->
|
226
|
|
|
227
|
|
<!-- <meta-data
|
228
|
|
android:name="YUNBA_APPKEY"
|
229
|
|
android:value="5630418ff085fc471efdf2c9" />
|
230
|
|
|
231
|
|
<service android:name="io.yunba.android.core.YunBaService" >
|
232
|
|
</serviceandroid:name="io.yunba.android.core.YunBaService" >
|
233
|
|
|
234
|
|
<receiver android:name="io.yunba.android.core.YunBaReceiver" >
|
235
|
|
<intent-filter>
|
236
|
|
<action android:name="android.intent.action.USER_PRESENT" />
|
237
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
238
|
|
</intent-filter>
|
239
|
|
</receiver> -->
|
240
|
|
|
241
|
|
<!-- YunBa End -->
|
242
|
|
|
243
|
|
<!-- begin: baidu speech sdk -->
|
244
|
|
<service
|
245
|
|
android:name="com.baidu.speech.VoiceRecognitionService"
|
246
|
|
android:exported="false" />
|
247
|
|
<activity
|
248
|
|
android:name="com.baidu.voicerecognition.android.ui.BaiduASRDigitalDialog"
|
249
|
|
android:configChanges="orientation|keyboardHidden|screenLayout"
|
250
|
|
android:theme="@android:style/Theme.Dialog"
|
251
|
|
android:exported="false"
|
252
|
|
android:screenOrientation="portrait">
|
253
|
|
<intent-filter>
|
254
|
|
<action android:name="com.baidu.action.RECOGNIZE_SPEECH" />
|
255
|
|
<category android:name="android.intent.category.DEFAULT" />
|
256
|
|
</intent-filter>
|
257
|
|
</activity>
|
258
|
|
<!-- end : baidu speech sdk -->
|
259
|
|
|
260
|
|
<!-- Umeng start -->
|
261
|
|
<meta-data android:value="577a0d7ee0f55ac156000f18" android:name="UMENG_APPKEY"/>
|
262
|
|
<meta-data android:value="display" android:name="display" />
|
263
|
|
<!-- Umeng end -->
|
264
|
|
|
265
|
|
<!-- DL framework -->
|
266
|
|
<activity
|
267
|
|
android:name="com.ryg.dynamicload.DLProxyActivity"
|
268
|
|
android:label="@string/app_name" >
|
269
|
|
<intent-filter>
|
270
|
|
<action android:name="com.ryg.dynamicload.proxy.activity.VIEW" />
|
271
|
|
|
272
|
|
<category android:name="android.intent.category.DEFAULT" />
|
273
|
|
</intent-filter>
|
274
|
|
</activity>
|
275
|
|
<activity
|
276
|
|
android:name="com.ryg.dynamicload.DLProxyFragmentActivity"
|
277
|
|
android:label="@string/app_name" >
|
278
|
|
<intent-filter>
|
279
|
|
<action android:name="com.ryg.dynamicload.proxy.fragmentactivity.VIEW" />
|
280
|
|
|
281
|
|
<category android:name="android.intent.category.DEFAULT" />
|
282
|
|
</intent-filter>
|
283
|
|
</activity>
|
284
|
|
<service android:name="com.ryg.dynamicload.DLProxyService" >
|
285
|
|
<intent-filter >
|
286
|
|
<action android:name="com.ryg.dynamicload.proxy.service.action"/>
|
287
|
|
</intent-filter>
|
288
|
|
</service>
|
289
|
|
<!-- End -->
|
290
|
|
|
291
|
|
<!-- PathMenu Start-->
|
292
|
|
<!-- <service android:name="com.ai.ipu.ipu_pathmenu.PathMenuService" >
|
293
|
|
</service> -->
|
294
|
|
<!-- PathMenu End -->
|
295
|
|
</application>
|
296
|
|
|
297
|
|
</manifest>
|
|
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
package="com.ai.ipu.show"
|
|
4
|
android:versionCode="1"
|
|
5
|
android:versionName="3.0.20170216" >
|
|
6
|
|
|
7
|
<uses-sdk
|
|
8
|
android:minSdkVersion="8"
|
|
9
|
android:targetSdkVersion="22" />
|
|
10
|
|
|
11
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
12
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
13
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
14
|
<uses-permission android:name="android.permission.ACCESS_MOCK_LOCATION" />
|
|
15
|
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
|
16
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
|
17
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
18
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
|
19
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
20
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
21
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
|
22
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
|
23
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
24
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
25
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
|
26
|
<uses-permission android:name="android.permission.SEND_SMS" />
|
|
27
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
|
28
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
|
|
29
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
30
|
<uses-permission android:name="android.permission.VIBRATE" /> <!-- 震动权限 -->
|
|
31
|
<uses-feature android:name="android.hardware.camera" /> <!-- 使用照相机权限 -->
|
|
32
|
<uses-feature android:name="android.hardware.camera.autofocus" /> <!-- 自动聚焦权限 -->
|
|
33
|
<uses-permission android:name="android.permission.FLASHLIGHT" /> <!-- 开启闪光灯权限 -->
|
|
34
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" /> <!-- 蓝牙 -->
|
|
35
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
|
36
|
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
|
|
37
|
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
|
|
38
|
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
|
|
39
|
<uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
|
|
40
|
|
|
41
|
<uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" />
|
|
42
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
43
|
|
|
44
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /><!-- 悬浮菜单 -->
|
|
45
|
<!-- NFC -->
|
|
46
|
<uses-permission android:name="android.permission.NFC" />
|
|
47
|
<uses-feature android:name="android.hardware.nfc" android:required="true" />
|
|
48
|
|
|
49
|
|
|
50
|
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
|
|
51
|
|
|
52
|
|
|
53
|
<!--
|
|
54
|
android:name="com.wade.mobile.frame.IpuBasicApplication"
|
|
55
|
-->
|
|
56
|
<application
|
|
57
|
android:allowBackup="false"
|
|
58
|
android:icon="@drawable/ic_launcher"
|
|
59
|
android:label="@string/app_name"
|
|
60
|
android:theme="@style/AppTheme"
|
|
61
|
android:hardwareAccelerated="true"> <!-- Application级应用加速,可以降低到Activity级 -->
|
|
62
|
<!-- <meta-data
|
|
63
|
android:name="com.amap.api.v2.apikey"
|
|
64
|
android:value="6afee5dced4c3b3a43c0feb11399bded"/> -->
|
|
65
|
<!-- 新版本高德key -->
|
|
66
|
<meta-data
|
|
67
|
android:name="com.amap.api.v2.apikey"
|
|
68
|
android:value="5c5c30c45f537b288aa42b6004b56f41"/>
|
|
69
|
<activity
|
|
70
|
android:name="com.ai.ipu.display.MainActivity"
|
|
71
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
|
|
72
|
android:label="@string/app_name"
|
|
73
|
android:screenOrientation="portrait"
|
|
74
|
android:windowSoftInputMode="stateHidden|adjustResize" >
|
|
75
|
<intent-filter>
|
|
76
|
<action android:name="android.intent.action.MAIN" />
|
|
77
|
|
|
78
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
79
|
</intent-filter>
|
|
80
|
</activity>
|
|
81
|
|
|
82
|
<activity
|
|
83
|
android:name="com.wade.mobile.common.nfc.activity.NfcActivity">
|
|
84
|
|
|
85
|
<!-- <intent-filter>
|
|
86
|
<action android:name="android.nfc.action.TECH_DISCOVERED" />
|
|
87
|
</intent-filter>
|
|
88
|
|
|
89
|
<meta-data
|
|
90
|
android:name="android.nfc.action.TECH_DISCOVERED"
|
|
91
|
android:resource="@xml/nfc_tech_filter" />
|
|
92
|
|
|
93
|
<intent-filter>
|
|
94
|
<action android:name="android.nfc.action.TAG_DISCOVERED" />
|
|
95
|
|
|
96
|
<category android:name="android.intent.category.DEFAULT" />
|
|
97
|
</intent-filter> -->
|
|
98
|
</activity>
|
|
99
|
|
|
100
|
<!-- 注册推送服务 -->
|
|
101
|
<service android:name="com.ai.mobile.im.PushService" android:process=":WmPush" />
|
|
102
|
|
|
103
|
<!-- 对话框 -->
|
|
104
|
<activity
|
|
105
|
android:name="com.wade.mobile.ui.activity.CustomDialogActivity"
|
|
106
|
android:theme="@style/CustomDialogTheme" >
|
|
107
|
</activity>
|
|
108
|
<!-- 窗口 -->
|
|
109
|
<activity
|
|
110
|
android:name="com.wade.mobile.ui.activity.CustomWindowActivity">
|
|
111
|
</activity>
|
|
112
|
<!-- openUrl -->
|
|
113
|
<activity
|
|
114
|
android:name="com.wade.mobile.ui.activity.OpenUrlActivity">
|
|
115
|
</activity>
|
|
116
|
<!-- 打开自定义浏览器 -->
|
|
117
|
<activity
|
|
118
|
android:name="com.wade.mobile.common.browser.BrowserActivity">
|
|
119
|
</activity>
|
|
120
|
<!-- 侧滑菜单 -->
|
|
121
|
<activity android:name="com.wade.mobile.ui.activity.SlidingMenuActivity"
|
|
122
|
android:theme="@style/SlidingMenuTheme" >
|
|
123
|
</activity>
|
|
124
|
<!-- 蓝牙分享 -->
|
|
125
|
<!--
|
|
126
|
<activity
|
|
127
|
android:name="com.wade.mobile.common.bluetooth.activity.ShareByBluetoothActivity"
|
|
128
|
android:theme="@style/ShareApkDialogTheme" >
|
|
129
|
</activity>
|
|
130
|
-->
|
|
131
|
<activity
|
|
132
|
android:name="com.ai.ipu.bluetooth.activity.ShareByBluetoothActivity"
|
|
133
|
android:theme="@style/ShareApkDialogTheme">
|
|
134
|
</activity>
|
|
135
|
<!-- 二维码扫描 -->
|
|
136
|
<!--
|
|
137
|
<activity
|
|
138
|
android:name="com.wade.mobile.common.scan.activity.CaptureActivity"
|
|
139
|
android:configChanges="orientation|keyboardHidden"
|
|
140
|
android:screenOrientation="portrait" >
|
|
141
|
</activity>
|
|
142
|
-->
|
|
143
|
<!-- 单个扫码 -->
|
|
144
|
<!-- <activity
|
|
145
|
android:name="com.ai.ipu.scan.activity.CaptureSingleActivity"
|
|
146
|
android:configChanges="orientation|keyboardHidden"
|
|
147
|
android:screenOrientation="portrait" >
|
|
148
|
</activity> -->
|
|
149
|
<!-- 多个扫码 -->
|
|
150
|
<!-- <activity
|
|
151
|
android:name="com.ai.ipu.scan.activity.CaptureMultipleActivity"
|
|
152
|
android:configChanges="orientation|keyboardHidden"
|
|
153
|
android:screenOrientation="portrait" >
|
|
154
|
</activity> -->
|
|
155
|
<!-- 音乐播放服务 -->
|
|
156
|
<service android:name="com.wade.mobile.common.audio.play.AudioPlayerService" />
|
|
157
|
<!-- 录制声音
|
|
158
|
<activity
|
|
159
|
android:name="com.wade.mobile.common.audio.activity.AudioRecorderActivity"
|
|
160
|
android:theme="@style/AudioDialogTheme" >
|
|
161
|
</activity> -->
|
|
162
|
<activity
|
|
163
|
android:name="com.wade.mobile.common.simplemedia.activity.SARecorder"
|
|
164
|
android:theme="@style/AudioDialogTheme" >
|
|
165
|
</activity>
|
|
166
|
<!-- 播放音乐 -->
|
|
167
|
<activity
|
|
168
|
android:name="com.wade.mobile.common.audio.activity.AudioPlayerActivity"
|
|
169
|
android:theme="@style/AudioDialogTheme" >
|
|
170
|
</activity>
|
|
171
|
<!-- 标记地图 -->
|
|
172
|
<!--
|
|
173
|
<activity android:name="com.wade.mobile.common.map.activity.MarkMapActivity">
|
|
174
|
</activity>
|
|
175
|
-->
|
|
176
|
<activity android:name="com.ai.ipu.map.activity.MarkMapActivity">
|
|
177
|
</activity>
|
|
178
|
<!-- 通讯录UI -->
|
|
179
|
<activity android:name="com.wade.mobile.common.contacts.activity.ContactsActivity">
|
|
180
|
</activity>
|
|
181
|
<!-- 设定位置 -->
|
|
182
|
<!--
|
|
183
|
<activity
|
|
184
|
android:name="com.wade.mobile.common.map.activity.SelectLocationActivity"
|
|
185
|
android:screenOrientation="portrait" >
|
|
186
|
</activity>
|
|
187
|
-->
|
|
188
|
<activity
|
|
189
|
android:name="com.ai.ipu.map.activity.SelectLocationActivity"
|
|
190
|
android:screenOrientation="portrait">
|
|
191
|
</activity>
|
|
192
|
<!-- 键盘 -->
|
|
193
|
<activity android:name="com.wade.mobile.common.keyboard.KeyboardActivity"
|
|
194
|
android:theme="@android:style/Theme.Translucent">
|
|
195
|
</activity>
|
|
196
|
<!-- 手势锁 -->
|
|
197
|
<activity android:name="com.wade.mobile.common.screenlock.ScreenUnlockActivity"
|
|
198
|
android:theme="@android:style/Theme.NoTitleBar">
|
|
199
|
</activity>
|
|
200
|
<activity android:name="com.wade.mobile.common.screenlock.SetScreenLockActivity"
|
|
201
|
android:theme="@android:style/Theme.NoTitleBar">
|
|
202
|
</activity>
|
|
203
|
<!-- 提示对话框 -->
|
|
204
|
<activity android:name="com.ai.ipu.mobilealertdialog.activity.AlertDialogActivity"></activity>
|
|
205
|
<!-- 百度地图 -->
|
|
206
|
<meta-data
|
|
207
|
android:name="com.baidu.lbsapi.API_KEY"
|
|
208
|
android:value="glzX2yGOgROP15Sz15wwpBvMTnXAQ9fG" />
|
|
209
|
<!--百度的key根据Android的KeyStore生成,因此需要根据本地环境生成-->
|
|
210
|
<activity
|
|
211
|
android:name="com.ai.ipu.baidumap.activity.BDMapActivity"
|
|
212
|
android:screenOrientation="portrait">
|
|
213
|
</activity>
|
|
214
|
<activity
|
|
215
|
android:name="com.ai.ipu.baidumap.activity.PoiSearchAcitivty"
|
|
216
|
android:screenOrientation="portrait">
|
|
217
|
</activity>
|
|
218
|
<activity
|
|
219
|
android:name="com.ai.ipu.baidumap.activity.LbsSearchActivity"
|
|
220
|
android:screenOrientation="portrait">
|
|
221
|
</activity>
|
|
222
|
|
|
223
|
<service android:name="com.baidu.location.f"
|
|
224
|
android:enabled="true" android:process=":remote">
|
|
225
|
</service>
|
|
226
|
<!-- YunBa Start -->
|
|
227
|
|
|
228
|
<!-- <meta-data
|
|
229
|
android:name="YUNBA_APPKEY"
|
|
230
|
android:value="5630418ff085fc471efdf2c9" />
|
|
231
|
|
|
232
|
<service android:name="io.yunba.android.core.YunBaService" android:name="io.yunba.android.core.YunBaService" >
|
|
233
|
</service>
|
|
234
|
|
|
235
|
<receiver android:name="io.yunba.android.core.YunBaReceiver" >
|
|
236
|
<intent-filter>
|
|
237
|
<action android:name="android.intent.action.USER_PRESENT" />
|
|
238
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
239
|
</intent-filter>
|
|
240
|
</receiver> -->
|
|
241
|
|
|
242
|
<!-- YunBa End -->
|
|
243
|
|
|
244
|
<!-- begin: baidu speech sdk -->
|
|
245
|
<service
|
|
246
|
android:name="com.baidu.speech.VoiceRecognitionService"
|
|
247
|
android:exported="false" />
|
|
248
|
<activity
|
|
249
|
android:name="com.baidu.voicerecognition.android.ui.BaiduASRDigitalDialog"
|
|
250
|
android:configChanges="orientation|keyboardHidden|screenLayout"
|
|
251
|
android:theme="@android:style/Theme.Dialog"
|
|
252
|
android:exported="false"
|
|
253
|
android:screenOrientation="portrait">
|
|
254
|
<intent-filter>
|
|
255
|
<action android:name="com.baidu.action.RECOGNIZE_SPEECH" />
|
|
256
|
<category android:name="android.intent.category.DEFAULT" />
|
|
257
|
</intent-filter>
|
|
258
|
</activity>
|
|
259
|
<!-- end : baidu speech sdk -->
|
|
260
|
|
|
261
|
<!-- Umeng start -->
|
|
262
|
<meta-data android:value="577a0d7ee0f55ac156000f18" android:name="UMENG_APPKEY"/>
|
|
263
|
<meta-data android:value="display" android:name="display" />
|
|
264
|
<!-- Umeng end -->
|
|
265
|
|
|
266
|
<!-- DL framework -->
|
|
267
|
<activity
|
|
268
|
android:name="com.ryg.dynamicload.DLProxyActivity"
|
|
269
|
android:label="@string/app_name" >
|
|
270
|
<intent-filter>
|
|
271
|
<action android:name="com.ryg.dynamicload.proxy.activity.VIEW" />
|
|
272
|
|
|
273
|
<category android:name="android.intent.category.DEFAULT" />
|
|
274
|
</intent-filter>
|
|
275
|
</activity>
|
|
276
|
<activity
|
|
277
|
android:name="com.ryg.dynamicload.DLProxyFragmentActivity"
|
|
278
|
android:label="@string/app_name" >
|
|
279
|
<intent-filter>
|
|
280
|
<action android:name="com.ryg.dynamicload.proxy.fragmentactivity.VIEW" />
|
|
281
|
|
|
282
|
<category android:name="android.intent.category.DEFAULT" />
|
|
283
|
</intent-filter>
|
|
284
|
</activity>
|
|
285
|
<service android:name="com.ryg.dynamicload.DLProxyService" >
|
|
286
|
<intent-filter >
|
|
287
|
<action android:name="com.ryg.dynamicload.proxy.service.action"/>
|
|
288
|
</intent-filter>
|
|
289
|
</service>
|
|
290
|
<!-- End -->
|
|
291
|
|
|
292
|
<!-- PathMenu Start-->
|
|
293
|
<!-- <service android:name="com.ai.ipu.ipu_pathmenu.PathMenuService" >
|
|
294
|
</service> -->
|
|
295
|
<!-- PathMenu End -->
|
|
296
|
</application>
|
|
297
|
|
|
298
|
</manifest>
|