lin
2025-08-14 dae8bad597b6607a449b32bf76c523423f7720ed
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
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
        package="com.android.fakeoemfeatures"
        coreApp="true"
        >
 
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
 
    <application
        android:persistent="true"
        android:name=".FakeApp"
        android:allowClearUserData="false"
        android:allowBackup="false"
        android:hardwareAccelerated="true"
        android:label="Fake OEM Features"
        android:defaultToDeviceProtectedStorage="true"
        android:directBootAware="true">
 
        <service android:name=".FakeCoreService" android:process=":core"
                android:label="Fake OEM Core Service" />
        <service android:name=".FakeCoreService2" android:process=":core2"
                android:label="Fake OEM Core Service Also" />
        <service android:name=".FakeCoreService3" android:process=":core3"
                android:label="Fake OEM Core Service Me Too" />
        <service android:name=".FakeBackgroundService" android:process=":background"
                android:label="Fake OEM Bg Service" />
    </application>
</manifest>