Moving LauncherExtension to a separate package

Change-Id: I6eef1cbb17295e59eae04f90fa44037be5f7da4b
This commit is contained in:
Sunny Goyal
2015-06-25 18:21:41 -07:00
parent b41b836968
commit 72db10a93c
2 changed files with 13 additions and 3 deletions
+5 -1
View File
@@ -93,8 +93,10 @@
</intent-filter>
</activity>
<!-- ENABLE_FOR_TESTING
<activity
android:name="com.android.launcher3.LauncherExtension"
android:name="com.android.launcher3.testing.LauncherExtension"
android:launchMode="singleTask"
android:clearTaskOnLaunch="true"
android:stateNotNeeded="true"
@@ -110,6 +112,8 @@
</intent-filter>
</activity>
-->
<activity
android:name="com.android.launcher3.ToggleWeightWatcher"
android:label="@string/toggle_weight_watcher"
@@ -1,7 +1,6 @@
package com.android.launcher3;
package com.android.launcher3.testing;
import android.animation.Animator;
import android.animation.Animator.AnimatorListener;
import android.animation.AnimatorListenerAdapter;
import android.animation.ObjectAnimator;
import android.content.ComponentName;
@@ -11,6 +10,13 @@ import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import com.android.launcher3.AppInfo;
import com.android.launcher3.InsettableFrameLayout;
import com.android.launcher3.Launcher;
import com.android.launcher3.LauncherAnimUtils;
import com.android.launcher3.LauncherCallbacks;
import com.android.launcher3.R;
import com.android.launcher3.allapps.AllAppsSearchBarController;
import com.android.launcher3.util.ComponentKey;