-
Notifications
You must be signed in to change notification settings - Fork 113
/
AndroidManifest.xml
166 lines (150 loc) · 8.31 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
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.qiyi.pluginlibrary"
android:versionCode="1"
android:versionName="1.0">
<application>
<!-- 插件安装Service,独立进程 -->
<service
android:name="org.qiyi.pluginlibrary.install.PluginInstallerService"
android:exported="false"
android:process=":pluginInstaller">
<intent-filter>
<action android:name="com.qiyi.video.plugin.installed.service.INSTALL" />
</intent-filter>
</service>
<!-- 主进程Service -->
<service android:name="org.qiyi.pluginlibrary.pm.PluginPackageManagerService" />
<activity
android:name="org.qiyi.pluginlibrary.component.TransRecoveryActivity0"
android:screenOrientation="portrait" />
<activity
android:name="org.qiyi.pluginlibrary.component.TransRecoveryActivity1"
android:process=":plugin1"
android:screenOrientation="portrait" />
<activity
android:name="org.qiyi.pluginlibrary.component.TransRecoveryActivity2"
android:process=":plugin2"
android:screenOrientation="portrait" />
<!-- standard Activity坑位 -->
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxy0"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:screenOrientation="portrait" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxy1"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:process=":plugin1"
android:screenOrientation="portrait" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxy2"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:process=":plugin2"
android:screenOrientation="portrait" />
<!-- standard 透明Activity坑位 -->
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyTranslucent0"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:theme="@android:style/Theme.Translucent" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyTranslucent1"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:process=":plugin1"
android:theme="@android:style/Theme.Translucent" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyTranslucent2"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:process=":plugin2"
android:theme="@android:style/Theme.Translucent" />
<!-- standard 横屏Activity坑位 -->
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyLandscape0"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:screenOrientation="landscape" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyLandscape1"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:process=":plugin1"
android:screenOrientation="landscape" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyLandscape2"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:process=":plugin2"
android:screenOrientation="landscape" />
<!-- singTask独立taskAffinity的Activity坑位 -->
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxySingleTask0"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:launchMode="singleTask"
android:taskAffinity=":container1"/>
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxySingleTask1"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:launchMode="singleTask"
android:process=":plugin1"
android:taskAffinity=":container1"/>
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxySingleTask2"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:launchMode="singleTask"
android:process=":plugin2"
android:taskAffinity=":container1"/>
<!-- singTask独立taskAffinity支持pip的Activity坑位 -->
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyPip0"
android:resizeableActivity="true"
android:supportsPictureInPicture="true"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:launchMode="standard"
android:taskAffinity=":container2"/>
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyPip1"
android:resizeableActivity="true"
android:supportsPictureInPicture="true"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:launchMode="standard"
android:process=":plugin1"
android:taskAffinity=":container2"/>
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyPip2"
android:resizeableActivity="true"
android:supportsPictureInPicture="true"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:launchMode="standard"
android:process=":plugin2"
android:taskAffinity=":container2"/>
<!-- standard 处理横竖屏变化的Activity,可废弃 -->
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyHandleConfigChange0"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyHandleConfigChange1"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:process=":plugin1" />
<activity
android:name="org.qiyi.pluginlibrary.component.InstrActivityProxyHandleConfigChange2"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize"
android:process=":plugin2" />
<!-- Service坑位 -->
<service android:name="org.qiyi.pluginlibrary.component.ServiceProxy0" />
<service
android:name="org.qiyi.pluginlibrary.component.ServiceProxy1"
android:process=":plugin1" />
<service
android:name="org.qiyi.pluginlibrary.component.ServiceProxy2"
android:process=":plugin2" />
<service
android:name="org.qiyi.pluginlibrary.component.ServiceProxy3"
android:process=":downloader" />
<provider
android:name="org.qiyi.pluginlibrary.component.ContentProviderProxy1"
android:authorities="${applicationId}.neptune.provider1"
android:exported="false"
android:grantUriPermissions="true"
android:process=":plugin1"/>
<provider
android:name="org.qiyi.pluginlibrary.pm.PluginPackageManagerProvider"
android:authorities="${applicationId}.neptune.manager.provider"
android:exported="false"
android:multiprocess="false"/>
</application>
</manifest>