Skip to content Skip to sidebar Skip to footer

Android Custom Launcher Startactivity() Blocks Boot_completed Intent

I am currently working on a custom ROM (based on CyanogenMod 11.0), which aims to implement a custom 'Kiosk Mode'. To do this, I have three components in one application (with syst

Solution 1:

Root cause: finishBooting() is not called because Home Activity is not on top of stack.

http://androidxref.com/4.4.4_r1/xref/frameworks/base/services/java/com/android/server/am/ActivityStackSupervisor.java

Line: 1811 Line: 1883-1886 Line: 1934-1940

Answer :

Do not call start Activity Until Boot_Completed is received.

Post a Comment for "Android Custom Launcher Startactivity() Blocks Boot_completed Intent"