Files
rk35xx-android14/frameworks/base/packages/FakeOemFeatures/AndroidManifest.xml
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

28 lines
1.1 KiB
XML

<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>