summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/AllAppsList.java
diff options
context:
space:
mode:
authorHyunyoung Song <hyunyoungs@google.com>2017-05-31 11:21:13 -0700
committerHyunyoung Song <hyunyoungs@google.com>2017-05-31 12:08:55 -0700
commit3a253967df1cb5ea97c82b34162ae3ecd7f24bc0 (patch)
tree80f331cc70d594197b256049cc9adcede423e44d /src/com/android/launcher3/AllAppsList.java
parent0ef74aba1a089443c4667f0c339e017916811c84 (diff)
downloadandroid_packages_apps_Trebuchet-3a253967df1cb5ea97c82b34162ae3ecd7f24bc0.tar.gz
android_packages_apps_Trebuchet-3a253967df1cb5ea97c82b34162ae3ecd7f24bc0.tar.bz2
android_packages_apps_Trebuchet-3a253967df1cb5ea97c82b34162ae3ecd7f24bc0.zip
Add debug message to indicate why shortcut has been deleted.
b/62088762 Change-Id: I2bd6104d1f4d76d7bf888615a06088d3405f03c6
Diffstat (limited to 'src/com/android/launcher3/AllAppsList.java')
-rw-r--r--src/com/android/launcher3/AllAppsList.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/com/android/launcher3/AllAppsList.java b/src/com/android/launcher3/AllAppsList.java
index d7f0180fa..be0192bd6 100644
--- a/src/com/android/launcher3/AllAppsList.java
+++ b/src/com/android/launcher3/AllAppsList.java
@@ -24,6 +24,7 @@ import android.os.Process;
import android.os.UserHandle;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
+import android.util.Log;
import com.android.launcher3.compat.LauncherAppsCompat;
import com.android.launcher3.compat.PackageInstallerCompat;
@@ -39,6 +40,8 @@ import java.util.List;
* Stores the list of all applications for the all apps view.
*/
public class AllAppsList {
+ private static final String TAG = "AllAppsList";
+
public static final int DEFAULT_APPLICATIONS_NUMBER = 42;
/** The list off all apps. */
@@ -184,6 +187,7 @@ public class AllAppsList {
if (user.equals(applicationInfo.user)
&& packageName.equals(applicationInfo.componentName.getPackageName())) {
if (!findActivity(matches, applicationInfo.componentName)) {
+ Log.w(TAG, "Shortcut will be removed due to app component name change.");
removed.add(applicationInfo);
data.remove(i);
}