packages/apps/Launcher3#?
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b031ffb..2fc63d4 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -56,10 +56,13 @@
? ? ? ? ? ? ?android:enabled="true">
? ? ? ? ? ? ?<intent-filter>
? ? ? ? ? ? ? ? ?<action android:name="android.intent.action.MAIN" />
+ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <!--
? ? ? ? ? ? ? ? ?<category android:name="android.intent.category.HOME" />
+ ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? -->
? ? ? ? ? ? ? ? ?<category android:name="android.intent.category.DEFAULT" />
? ? ? ? ? ? ? ? ?<category android:name="android.intent.category.MONKEY"/>
? ? ? ? ? ? ? ? ?<category android:name="android.intent.category.LAUNCHER_APP" />
+
? ? ? ? ? ? ?</intent-filter>
? ? ? ? ? ? ?<meta-data
? ? ? ? ? ? ? ? ?android:name="com.android.launcher3.grid.control"
diff --git a/quickstep/src/com/android/quickstep/OverviewComponentObserver.java b/quickstep/src/com/android/quickstep/OverviewComponentObserver.java
index 93a6127..55b65c4 100644
--- a/quickstep/src/com/android/quickstep/OverviewComponentObserver.java
+++ b/quickstep/src/com/android/quickstep/OverviewComponentObserver.java
@@ -73,7 +73,7 @@ public final class OverviewComponentObserver {
? ? ? ? ?mContext = context;
? ? ? ? ?mCurrentHomeIntent = new Intent(Intent.ACTION_MAIN)
- ? ? ? ? ? ? ? ?.addCategory(Intent.CATEGORY_HOME)
+ ? ? ? ? ? ? ? ?//.addCategory(Intent.CATEGORY_HOME)
? ? ? ? ? ? ? ? ?.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
? ? ? ? ?mMyHomeIntent = new Intent(mCurrentHomeIntent).setPackage(mContext.getPackageName());
? ? ? ? ?ResolveInfo info = context.getPackageManager().resolveActivity(mMyHomeIntent, 0);
|