blob: a66521d9882295d977a058247e6a956b0caac9b9 [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"
Jeff Sharkeyf9fc6d62015-11-08 16:46:05 -080014 android:label="Fake OEM Features"
Jeff Sharkey8a372a02016-03-16 16:25:45 -060015 android:defaultToDeviceProtectedStorage="true"
16 android:directBootAware="true">
Dianne Hackbornd459f4b2012-02-27 18:37:40 -080017
18 <service android:name=".FakeCoreService" android:process=":core"
19 android:label="Fake OEM Core Service" />
Dianne Hackborne0afc342012-02-29 12:37:59 -080020 <service android:name=".FakeCoreService2" android:process=":core2"
Dianne Hackbornd459f4b2012-02-27 18:37:40 -080021 android:label="Fake OEM Core Service Also" />
Dianne Hackborne0afc342012-02-29 12:37:59 -080022 <service android:name=".FakeCoreService3" android:process=":core3"
Dianne Hackbornd459f4b2012-02-27 18:37:40 -080023 android:label="Fake OEM Core Service Me Too" />
24 <service android:name=".FakeBackgroundService" android:process=":background"
25 android:label="Fake OEM Bg Service" />
26 </application>
27</manifest>