phone进程是开机自启的,但是是如何实现的呢,这篇我们来看下phone是如何实现开机自启动的。
首先先看下文件package/services/Telephony/AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
package="com.android.phone"
coreApp="true"
android:sharedUserId="android.uid.phone"
android:sharedUserLabel="@string/phoneAppLabel"
>
可以看到其进程是com.android.phone,进程找到了,但是如何自启动的呢,我们往配置文件的下面翻翻:
<application android:name="PhoneApp"
android:persistent="true"
android:label="@string/phoneAppLabel"
android:icon="@mipmap/ic_launcher_phone"
android:allowBackup="false"
android:supportsRtl="true"
android:usesCleartextTraffic="true"
android:defaultToDeviceProtectedStorage="true"
android:directBootAware="true">
关键点在这:android:persistent="true",此属性的应用会在开机时启动。
和上一篇结合,phone的创建和初始化逻辑,是不是串起来了呢。
知识点补充:
我们来了解下android:persistent=true属性。
系统启动后,会通过ActivityManagerService的systemReady,加载persistent是true的应用。
拥有此属性的app将不能被kill或kill后会自动重启。
不过此apk是想做到不被kill,还是要在system/app下的哦。
网友评论