Хорошо, способ получить запуск системы заключается в следующемЗарегистрировать получателя в манифесте:
<receiver android:name=".StartupReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<category android:name="android.intent.category.HOME" />
</intent-filter>
</receiver>
Используйте разрешение в манифесте <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
Напишите класс ниже в вашем пакете
public class StartupReceiver extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
Log.e("MyStrtupIntentReceiver" ,"################# onReceive() system boot");
}
}