我在一些地方读过,PhoneApp(com.android.phone.PhoneApp.java)是一个“持续进程”,它“在启动序列的早期启动”。任何人都可以确切地解释这是如何以及何时发生的感谢。
答案 0 :(得分:0)
回答我自己的问题...... AndroidManifest.xml文件中的以下条目指示ActivityManager启动指定的活动。
<!-- Broadcast Receiver that will process BOOT Complete and launch OTA
-->
- <receiver android:name="OtaStartupReceiver" android:exported="false">
- <intent-filter android:priority="100">
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>