mirror of
https://github.com/LawnchairLauncher/lawnchair.git
synced 2026-03-03 17:36:49 +00:00
fix 2542590 add more logging when launching app fails
Change-Id: I5a1fa261c6e67eb7afb661de39e35ce43e2caa59
This commit is contained in:
@@ -60,10 +60,11 @@ public class LiveFolder extends Folder {
|
||||
Uri uri = baseIntent.getData();
|
||||
uri = uri.buildUpon().appendPath(Long.toString(holder.id)).build();
|
||||
intent.setData(uri);
|
||||
mLauncher.startActivitySafely(intent);
|
||||
mLauncher.startActivitySafely(intent, "(position=" + position + ", id=" + id + ")");
|
||||
}
|
||||
} else if (holder.intent != null) {
|
||||
mLauncher.startActivitySafely(holder.intent);
|
||||
mLauncher.startActivitySafely(holder.intent,
|
||||
"(position=" + position + ", id=" + id + ")");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user