进入launcher桌面闪了一下(一帧)

发布时间:2023年12月28日

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

文章来源:https://blog.csdn.net/qq_46687516/article/details/135262148
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。