admin
6 天以前 7f0825f8195a522ed7e8bcdb6347f3a719e06c74
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="com.weikou.beibeivideo"
    android:versionCode="3"
    android:versionName="1.2">
    <queries>
        <package android:name="com.tencent.mobileqq" />
        <package android:name="com.tencent.mm" />
        <package android:name="com.taobao.taobao" />
        <package android:name="com.jingdong.app.mall" />
        <package android:name="com.ss.android.ugc.aweme" />
        <package android:name="com.ss.android.ugc.aweme.lite" />
    </queries>
 
 
    <!-- Allows access to the Download Manager -->
    <permission
        android:name="com.ddysvideo.mozillaonline.permission.ACCESS_DOWNLOAD_MANAGER"
        android:description="@string/permdesc_downloadManager"
        android:label="@string/permlab_downloadManager"
        android:protectionLevel="normal" />
    <permission android:name="android.permission.WRITE_MEDIA_STORAGE"></permission>
    <!-- Allows advanced access to the Download Manager -->
    <permission
        android:name="com.ddysvideo.mozillaonline.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED"
        android:description="@string/permdesc_downloadManagerAdvanced"
        android:label="@string/permlab_downloadManagerAdvanced"
        android:protectionLevel="normal" />
 
    <!-- Allows to send broadcasts on download completion -->
    <permission
        android:name="com.ddysvideo.mozillaonline.permission.SEND_DOWNLOAD_COMPLETED_INTENTS"
        android:description="@string/permdesc_downloadCompletedIntent"
        android:label="@string/permlab_downloadCompletedIntent"
        android:protectionLevel="normal" />
 
 
 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.VIBRATE" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.GET_TASKS" />
    <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
    <uses-permission android:name="com.ddysvideo.mozillaonline.permission.ACCESS_DOWNLOAD_MANAGER" />
    <uses-permission android:name="com.ddysvideo.mozillaonline.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED" />
    <uses-permission android:name="com.ddysvideo.mozillaonline.permission.SEND_DOWNLOAD_COMPLETED_INTENTS" />
    <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
    <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES"/>
    <!-- 快手 -->
    <permission
        android:name="${applicationId}.permission.KW_SDK_BROADCAST"
        android:protectionLevel="signature" />
    <uses-permission android:name="${applicationId}.permission.KW_SDK_BROADCAST" />
 
    <!-- gromore -->
    <permission
        android:name="${applicationId}.openadsdk.permission.TT_PANGOLIN"
        android:protectionLevel="signature" />
    <uses-permission android:name="${applicationId}.openadsdk.permission.TT_PANGOLIN" />
 
 
 
    <uses-sdk tools:overrideLibrary="com.pangrowth.adclog,com.bytedance.pangrowthsdk,com.bytedance.novel.pangolin,com.bytedance.sdk.dp.dpsdk_lite,com.bytedance.sdk.dp.dpsdk_live,com.byted.live.api,com.bytedance.pangolin.game,com.bytedance.miniapp,com.volcengine.mars.utility,com.shuyu.gsyvideoplayer.lib,com.shuyu.gsyvideoplayer,tv.danmaku.ijk.media.exo2,com.shuyu.gsyvideoplayer.armv5,com.shuyu.gsyvideoplayer.armv7a,com.shuyu.gsyvideoplayer.armv64,com.shuyu.gsyvideoplayer.x86_64,com.shuyu.gsyvideoplayer.x86,com.shuyu.gsy.base,shuyu.com.androidvideocache,com.bytedance.pangrowth.reward.sdk,com.pangrowth.luckycat_api,com.bytedance.sdk.openadsdk" />
 
 
    <application
        android:name="com.weikou.beibeivideo.BeibeiVideoApplication"
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:largeHeap="true"
        android:theme="@style/AppTheme"
        android:usesCleartextTraffic="true"
        android:extractNativeLibs="true"
        android:debuggable="false"
        tools:replace="android:allowBackup">
 
        <activity
            android:name="com.weikou.beibeivideo.ui.SplashActivity"
            android:exported="true"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.main.MainActivity"
            android:configChanges="keyboard|orientation|screenSize"
            android:exported="true"
            android:label="@string/app_name"
            android:launchMode="singleTask"
            android:theme="@style/AppTabTheme3"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.common.MVideosActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.SuggestionActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.SettingsActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.login.LoginActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.HelpAndTicklingActivity"
            android:label="@string/app_name"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.FeedBackActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.common.FollowActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.recommend.SearchActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="stateHidden"></activity>
        <activity
            android:name="com.weikou.beibeivideo.util.PermissionsActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="stateHidden"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.recommend.SearchResultActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.main.CategoryActivity"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:windowSoftInputMode="stateHidden"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.media.VideoDetailActivity"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:hardwareAccelerated="true"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@style/AppTabTheme2"
            android:windowSoftInputMode="stateHidden"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.media.VideoDetailActivity2"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:hardwareAccelerated="true"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:theme="@style/AppTabTheme2"
            android:windowSoftInputMode="stateHidden"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.discover.StarsActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="stateHidden" />
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.SystemMessageActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.BrowserActivity"
            android:configChanges="screenSize|keyboardHidden|orientation"
            android:label="@string/app_name"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.SimpleBrowserActivity"
            android:configChanges="screenSize|keyboardHidden|orientation"
            android:label="@string/app_name"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.PPTVPlayFragment"
            android:configChanges="screenSize|keyboardHidden|orientation"
            android:label="@string/app_name"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.video.VideoPlayerBrowserActivity"
            android:configChanges="screenSize|keyboardHidden|orientation"
            android:hardwareAccelerated="true"
            android:label="@string/app_name">
 
        </activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.DownLoadUrlActivity"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:label="@string/app_name"
            android:theme="@style/AppTabTheme"
            android:windowSoftInputMode="stateHidden"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.recent.DownLoadActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.discover.SpecificListActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="stateHidden" />
        <activity
            android:name="com.weikou.beibeivideo.ui.category.MVideosActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTabTheme1"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.MyFavouriteActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.common.VideosLiveActivity"
            android:label="@string/app_name"></activity>
        <activity android:name="com.weikou.beibeivideo.ui.VBrowserActivity"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.category.SpecificDetailActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.DownloadActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.WatchHistoryActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.category.StarDetailActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.login.RegisterActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.login.ForgetPwdActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.login.PersonInfoActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.discover.GoodsReviewActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.discover.GoodsDetailActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.discover.ReleaseGoodsActivity"
            android:label="@string/app_name"></activity>
        <activity
            android:name="com.weikou.beibeivideo.ui.discover.ReleasePromptActivity"
            android:label="@string/app_name"></activity>
 
        <activity
            android:name="com.weikou.beibeivideo.ui.login.PhoneLoginActivity"
            android:label="@string/app_name"></activity>
 
 
        <activity
            android:name="com.weikou.beibeivideo.ui.video.VideoPlayerActivity"
            android:configChanges="orientation|screenSize|keyboardHidden"
            android:hardwareAccelerated="true"
            android:label="@string/app_name"></activity>
 
 
        <activity
            android:name="com.weikou.beibeivideo.ui.ad.SplashAdActivity"
            android:hardwareAccelerated="true"
            android:label="@string/app_name"
            android:launchMode="singleTask"
            android:screenOrientation="portrait"></activity>
 
 
        <activity
            android:name="com.weikou.beibeivideo.ui.mine.GoldCornActivity"
            android:label="@string/app_name"
            android:launchMode="singleTask"
            android:screenOrientation="portrait"></activity>
 
 
        <activity
            android:name="com.weikou.beibeivideo.ui.common.LiveBrowserActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="adjustResize" />
        <activity
            android:name="com.weikou.beibeivideo.ui.live.Activity_LiveCateGory"
            android:label="@string/app_name"
            android:windowSoftInputMode="adjustResize" />
 
        <activity
            android:name=".ui.common.CommonFragmentActivity"
            android:label="@string/app_name"
            android:windowSoftInputMode="adjustResize" />
 
 
        <!-- 阿里云手机号认证 -->
 
        <!--联通电信授权⻚-->
        <activity
            android:name="com.mobile.auth.gatewayauth.LoginAuthActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:launchMode="singleTop"
            android:theme="@style/authsdk_activity_dialog" />
        <activity
            android:name="com.mobile.auth.gatewayauth.activity.AuthWebVeiwActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:launchMode="singleTop"
            android:screenOrientation="behind" />
 
        <activity
            android:name="com.cmic.sso.sdk.activity.LoginAuthActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:exported="false"
            android:launchMode="singleTop" />
 
 
 
        <service android:name="com.yeshi.appupdate.service.DownLoadFileService"></service>
        <service android:name="com.weikou.beibeivideo.service.DownLoadFileService" />
 
 
        <meta-data
            android:name="android.max_aspect"
            android:value="2.5" />
 
        <!-- umeng相关Start -->
        <!--<activity-->
        <!--android:name="com.umeng.socialize.view.ShareActivity"-->
        <!--android:configChanges="orientation|keyboard"-->
        <!--android:launchMode="singleTask"-->
        <!--android:noHistory="true"-->
        <!--android:theme="@style/Theme.UMDialog"-->
        <!--android:windowSoftInputMode="stateVisible|adjustResize"></activity>-->
 
        <meta-data
            android:name="UMENG_APPKEY"
            android:value="@string/umeng_key"></meta-data>
        <meta-data
            android:name="UMENG_MESSAGE_SECRET"
            android:value="570f28a578d6e12cba6f7f200b8d1c83"></meta-data>
        <meta-data
            android:name="UMENG_CHANNEL"
            android:value="huawei"></meta-data>
 
 
        <provider
            android:name="com.weikou.beibeivideo.db.WatchHistoryProvider"
            android:authorities="com.yeshi.ddysvideo.provider.watchhistory" />
        <provider
            android:name="com.weikou.beibeivideo.db.DownloadProvider"
            android:authorities="com.yeshi.ddysvideo.provider.download" />
        <provider
            android:name="com.weikou.beibeivideo.db.MessageProvider"
            android:authorities="com.yeshi.ddysvideo.provider.message" />
        <provider
            android:name="com.mozillaonline.providers.downloads.DownloadProvider"
            android:authorities="com.ddysvideo.downloads" />
 
 
 
        <service android:name="com.mozillaonline.providers.downloads.DownloadService" />
 
        <receiver
            android:name="com.mozillaonline.providers.downloads.DownloadReceiver"
            android:exported="false">
            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
            </intent-filter>
        </receiver>
 
        <!--PPTV-->
        <!-- 必须配置action,否则无法跨进程启动 -->
        <!--<service android:name="com.pplive.sdk.PPTVSdkService">-->
        <!--<intent-filter>-->
        <!--<action android:name="com.pplive.sdk.service" />-->
        <!--</intent-filter>-->
        <!--</service>-->
        <!--YouKu-->
        <meta-data
            android:name="client_id"
            android:value="758bef946d0050ef" />
        <meta-data
            android:name="client_secret"
            android:value="e113a131d49e1f837402e2807f2daf58" />
 
 
        <!--广点通广告-->
        <!-- targetSDKVersion >= 24时才需要添加这个provider。provider的authorities属性的值为${applicationId}.fileprovider,请开发者根据自己的${applicationId}来设置这个值,例如本例中applicationId为"com.qq.e.union.demo"。 -->
        <provider
            android:name="androidx.core.content.FileProvider"
            android:authorities="com.doudou.ysvideo.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/gdt_file_path"
                tools:replace="android:resource" />
        </provider>
 
        <provider
            android:name="com.qq.e.comm.GDTFileProvider"
            android:authorities="${applicationId}.gdt.fileprovider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/gdt_file_path" />
        </provider>
 
 
        <service
            android:name="com.qq.e.comm.DownloadService"
            android:exported="false" />
 
        <!-- 网盟广告 -->
        <provider
            android:name="com.bytedance.sdk.openadsdk.TTFileProvider"
            android:authorities="com.yeshi.ddysvideo.TTFileProvider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/file_paths" />
        </provider>
 
        <!-- 网盟广告 -->
        <provider
            android:name="com.bytedance.sdk.openadsdk.multipro.TTMultiProvider"
            android:authorities="com.doudou.ysvideo.TTMultiProvider" />
 
        <!--新浪 -->
        <activity
            android:name="com.umeng.socialize.media.WBShareCallBackActivity"
            android:configChanges="keyboardHidden|orientation"
            android:exported="false"
            android:theme="@android:style/Theme.Translucent.NoTitleBar"></activity>
 
 
        <!-- com.doudou.ysvideo -->
        <activity
            android:name="com.doudou.ysvideo.wxapi.WXEntryActivity"
            android:exported="true"
            android:label="@string/app_name"
            android:launchMode="singleTop"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" />
 
        <!-- QQ分享 -->
        <activity
            android:name="com.tencent.tauth.AuthActivity"
            android:launchMode="singleTask"
            android:noHistory="true">
            <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="tencent1105007756" />
                <!-- 专用App Id tencent1105296251 影视大全1105007756  测试时需要换成tencent222222 -->
            </intent-filter>
        </activity>
 
        <activity
            android:name="com.tencent.connect.common.AssistActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" />
 
        <!--风行广告 -->
        <provider
            android:name="com.funshion.video.util.FSFileProvider"
            android:authorities="com.yeshi.ddysvideo.funadsdk.provider"
            android:exported="false"
            android:grantUriPermissions="true">
            <meta-data
                android:name="android.support.FILE_PROVIDER_PATHS"
                android:resource="@xml/funshion_file_path" />
        </provider>
 
 
        <!-- 推送 -->
 
        <activity
            android:name=".ui.push.PushOpenClickActivity"
            android:exported="true"
            android:launchMode="singleTask"
            android:screenOrientation="portrait">
 
 
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
 
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <!-- 打开该activity的链接-->
                <data
                    android:host="com.huawei.codelabpush"
                    android:path="/deeplink"
                    android:scheme="buwanpush" />
 
            </intent-filter>
 
        </activity>
 
 
        <!-- 华为推送自动初始化 -->
        <meta-data
            android:name="push_kit_auto_init_enabled"
            android:value="false" />
        <!-- 华为推送服务注册 -->
        <!--        <service android:name=".service.HWPushService">-->
        <!--            <intent-filter>-->
        <!--                <action android:name="com.huawei.push.action.MESSAGING_EVENT" />-->
        <!--            </intent-filter>-->
        <!--        </service>-->
        <!--小米推送 -->
 
        <meta-data
            android:name="XIAOMI_APPID"
            android:value="${XIAOMI_APPID}"></meta-data>
        <meta-data
            android:name="XIAOMI_APPKEY"
            android:value="${XIAOMI_APPKEY}"></meta-data>
 
<!--        <receiver-->
<!--            android:name=".receiver.XMPushMessageReceiver"-->
<!--            android:exported="true">-->
<!--            <intent-filter>-->
<!--                <action android:name="com.xiaomi.mipush.RECEIVE_MESSAGE" />-->
<!--            </intent-filter>-->
<!--            <intent-filter>-->
<!--                <action android:name="com.xiaomi.mipush.MESSAGE_ARRIVED" />-->
<!--            </intent-filter>-->
<!--            <intent-filter>-->
<!--                <action android:name="com.xiaomi.mipush.ERROR" />-->
<!--            </intent-filter>-->
<!--        </receiver>-->
 
        <!--OPPO -->
        <meta-data
            android:name="OPPO_APPKEY"
            android:value="${OPPO_APPKEY}" />
        <meta-data
            android:name="OPPO_APPSECRET"
            android:value="${OPPO_APPSECRET}" />
 
 
        <!-- VIVO推送 -->
        <receiver android:name=".receiver.VIVOPushMessageReceiver">
            <intent-filter>
                <!--接收push消息-->
                <action android:name="com.vivo.pushclient.action.RECEIVE" />
            </intent-filter>
        </receiver>
 
        <!--Vivo Push开放平台中应用的appid 和api key-->
        <meta-data
            android:name="com.vivo.push.api_key"
            android:value="${VIVO_APPKEY}" />
 
        <meta-data
            android:name="com.vivo.push.app_id"
            android:value="${VIVO_APPID}" />
 
 
        <!--魅族推送 -->
 
        <meta-data
            android:name="MEIZU_APPKEY"
            android:value="${MEIZU_APPKEY}"></meta-data>
 
        <meta-data
            android:name="MEIZU_APPID"
            android:value="${MEIZU_APPID}"></meta-data>
 
        <receiver android:name=".receiver.MZPushMessageReceiver">
            <intent-filter>
                <!-- 接收 push 消息 -->
                <action android:name="com.meizu.flyme.push.intent.MESSAGE" />
                <!-- 接收 register 消息 -->
                <action android:name="com.meizu.flyme.push.intent.REGISTER.FEEDBACK" />
                <!-- 接收 unregister 消息-->
                <action android:name="com.meizu.flyme.push.intent.UNREGISTER.FEEDBACK" />
                <!-- 兼容低版本 Flyme3 推送服务配置 -->
                <action android:name="com.meizu.c2dm.intent.REGISTRATION" />
                <action android:name="com.meizu.c2dm.intent.RECEIVE" />
 
                <category android:name="${applicationId}" />
            </intent-filter>
        </receiver>
 
        <provider
            android:name="com.bytedance.sdk.dp.act.DPProvider"
            android:authorities="${applicationId}.BDDPProvider"
            android:exported="false" />
 
 
        <service
            android:name="com.tencent.smtt.export.external.DexClassLoaderProviderService"
            android:label="dexopt"
            android:process=":dexopt" >
        </service>
 
 
    </application>
 
</manifest>