1<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        android:defaultToDeviceProtectedStorage="true"
16        android:directBootAware="true">
17
18        <service android:name=".FakeCoreService" android:process=":core"
19                android:label="Fake OEM Core Service" />
20        <service android:name=".FakeCoreService2" android:process=":core2"
21                android:label="Fake OEM Core Service Also" />
22        <service android:name=".FakeCoreService3" android:process=":core3"
23                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>
28