Skip to content

Commit ac24d23

Browse files
Christopher TateAndroid (Google) Code Review
authored andcommitted
Merge "Don't bring up Launcher until after boot complete" into froyo
2 parents d1d9047 + 04c0af8 commit ac24d23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/java/com/android/server/am/ActivityManagerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5583,7 +5583,7 @@ private final boolean attachApplicationLocked(IApplicationThread thread,
55835583

55845584
// See if the top visible activity is waiting to run in this process...
55855585
HistoryRecord hr = topRunningActivityLocked(null);
5586-
if (hr != null) {
5586+
if (hr != null && normalMode) {
55875587
if (hr.app == null && app.info.uid == hr.info.applicationInfo.uid
55885588
&& processName.equals(hr.processName)) {
55895589
try {

0 commit comments

Comments
 (0)