blob: 93b8b47db761b8bac4ceee021a613a40b5a09ad5 [file] [log] [blame]
Dianne Hackbornd459f4b2012-02-27 18:37:40 -08001<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2 package="com.android.fakeoemfeatures"
3 coreApp="true"
4 >
5
6 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
7
8 <application
9 android:persistent="true"
10 android:name=".FakeApp"
11 android:allowClearUserData="false"
12 android:allowBackup="false"
13 android:hardwareAccelerated="true"
14 android:label="Fake OEM Features">
15
16 <service android:name=".FakeCoreService" android:process=":core"
17 android:label="Fake OEM Core Service" />
Dianne Hackborne0afc342012-02-29 12:37:59 -080018 <service android:name=".FakeCoreService2" android:process=":core2"
Dianne Hackbornd459f4b2012-02-27 18:37:40 -080019 android:label="Fake OEM Core Service Also" />
Dianne Hackborne0afc342012-02-29 12:37:59 -080020 <service android:name=".FakeCoreService3" android:process=":core3"
Dianne Hackbornd459f4b2012-02-27 18:37:40 -080021 android:label="Fake OEM Core Service Me Too" />
22 <service android:name=".FakeBackgroundService" android:process=":background"
23 android:label="Fake OEM Bg Service" />
24 </application>
25</manifest>