blob: e30689203c1b91fd767b84709b7eea80e880b04d (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.framework.multidexlegacytestservices"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="19" />
<application
android:label="MultiDexLegacyTestServices">
<service android:name=".Service1" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices1">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service1" />
</intent-filter>
</service>
<service android:name=".Service2" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices2">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service2" />
</intent-filter>
</service>
<service android:name=".Service3" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices3">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service3" />
</intent-filter>
</service>
<service android:name=".Service4" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices4">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service4" />
</intent-filter>
</service>
<service android:name=".Service5" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices5">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service5" />
</intent-filter>
</service>
<service android:name=".Service6" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices6">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service6" />
</intent-filter>
</service>
<service android:name=".Service7" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices7">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service7" />
</intent-filter>
</service>
<service android:name=".Service8" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices8">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service8" />
</intent-filter>
</service>
<service android:name=".Service9" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices9">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service9" />
</intent-filter>
</service>
<service android:name=".Service10" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices10">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service10" />
</intent-filter>
</service>
<service android:name=".Service11" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices11">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service11" />
</intent-filter>
</service>
<service android:name=".Service12" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices12">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service12" />
</intent-filter>
</service>
<service android:name=".Service13" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices13">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service13" />
</intent-filter>
</service>
<service android:name=".Service14" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices14">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service14" />
</intent-filter>
</service>
<service android:name=".Service15" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices15">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service15" />
</intent-filter>
</service>
<service android:name=".Service16" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices16">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service16" />
</intent-filter>
</service>
<service android:name=".Service17" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices17">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service17" />
</intent-filter>
</service>
<service android:name=".Service18" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices18">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service18" />
</intent-filter>
</service>
<service android:name=".Service19" android:exported="true" android:process=":com.android.framework.multidexlegacytestservices19">
<intent-filter>
<action android:name="com.android.framework.multidexlegacytestservices.action.Service19" />
</intent-filter>
</service>
</application>
</manifest>
|