/packages/apps/Provision$AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
? ? ? ? package="com.android.provision">
? ? <original-package android:name="com.android.provision" />
? ? <!-- For miscellaneous settings -->
? ? <uses-permission android:name="android.permission.WRITE_SETTINGS" />
? ? <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
<!--tyd,lxd,20230916,solve enter launcher splash screen-->
? ? <application>
? ? ? ? <activity android:name="DefaultActivity"
? ? ? ? ? ? ? ? android:excludeFromRecents="true"
? ? ? ? ? ? ? ? android:directBootAware="true"
? ? ? ? ? ? ? ? >
? ? ? ? ? ? <intent-filter android:priority="1">
? ? ? ? ? ? ? ? <action android:name="android.intent.action.MAIN" />
? ? ? ? ? ? ? ? <category android:name="android.intent.category.HOME" />
? ? ? ? ? ? ? ? <category android:name="android.intent.category.DEFAULT" />
? ? ? ? ? ? ? ? <category android:name="android.intent.category.SETUP_WIZARD" />
? ? ? ? ? ? </intent-filter>
? ? ? ? </activity>
? ? </application>
</manifest>