diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c92cb9b64e..1677ff5a53 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: echo ${{ secrets.KEYSTORE }} | base64 --decode > ${{ github.workspace }}/key.jks fi - name: Build debug APK - run: ./gradlew assembleLawnWithQuickstepGithubRelease + run: ./gradlew assembleLawnWithQuickstepGithubDebug assembleLawnWithQuickstepPlayDebug - name: Upload artifact uses: actions/upload-artifact@v4 with: diff --git a/lawnchair/src/com/android/wm/shell/util/GroupedRecentTaskInfo.java b/lawnchair/src/com/android/wm/shell/util/GroupedRecentTaskInfo.java deleted file mode 100644 index 71cfe3e132..0000000000 --- a/lawnchair/src/com/android/wm/shell/util/GroupedRecentTaskInfo.java +++ /dev/null @@ -1,203 +0,0 @@ -/* - * Copyright (C) 2021 The Android Open Source Project - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ -package com.android.wm.shell.util; - -import android.annotation.IntDef; -import android.app.ActivityManager; -import android.app.WindowConfiguration; -import android.os.Parcel; -import android.os.Parcelable; - -import androidx.annotation.NonNull; -import androidx.annotation.Nullable; - -import java.util.Arrays; -import java.util.List; - -/** - * Simple container for recent tasks. May contain either a single or pair of tasks. - */ -public class GroupedRecentTaskInfo implements Parcelable { - - public static final int TYPE_SINGLE = 1; - public static final int TYPE_SPLIT = 2; - public static final int TYPE_FREEFORM = 3; - - @IntDef(prefix = {"TYPE_"}, value = { - TYPE_SINGLE , - TYPE_SPLIT , - TYPE_FREEFORM - }) - public @interface GroupType { - } - - @NonNull - private final ActivityManager.RecentTaskInfo[] mTasks; - @Nullable - private final SplitBounds mSplitBounds; - @GroupType - private final int mType; - - /** - * Create new for a single task - */ - - public static GroupedRecentTaskInfo forSingleTask( - @NonNull ActivityManager.RecentTaskInfo task) { - return new GroupedRecentTaskInfo (new ActivityManager.RecentTaskInfo[]{task} , null , - TYPE_SINGLE); - } - - /** - * Create new for a pair of tasks in split screen - */ - public static GroupedRecentTaskInfo forSplitTasks(@NonNull ActivityManager.RecentTaskInfo task1 , - @NonNull ActivityManager.RecentTaskInfo task2 , @Nullable SplitBounds splitBounds) { - return new GroupedRecentTaskInfo (new ActivityManager.RecentTaskInfo[]{task1 , task2} , - splitBounds , TYPE_SPLIT); - } - - /** - * Create new for a group of freeform tasks - */ - public static GroupedRecentTaskInfo forFreeformTasks( - @NonNull ActivityManager.RecentTaskInfo... tasks) { - return new GroupedRecentTaskInfo (tasks , null , TYPE_FREEFORM); - } - - private GroupedRecentTaskInfo(@NonNull ActivityManager.RecentTaskInfo[] tasks , - @Nullable SplitBounds splitBounds , @GroupType int type) { - mTasks = tasks; - mSplitBounds = splitBounds; - mType = type; - } - - GroupedRecentTaskInfo(Parcel parcel) { - mTasks = parcel.createTypedArray(ActivityManager.RecentTaskInfo.CREATOR); - mSplitBounds = parcel.readTypedObject(SplitBounds.CREATOR); - mType = parcel.readInt(); - } - - /** - * Get primary {@link ActivityManager.RecentTaskInfo} - */ - @NonNull - public ActivityManager.RecentTaskInfo getTaskInfo1() { - return mTasks[0]; - } - - /** - * Get secondary {@link ActivityManager.RecentTaskInfo}. - *
- * Used in split screen.
- */
- @Nullable
- public ActivityManager.RecentTaskInfo getTaskInfo2() {
- if (mTasks.length > 1) {
- return mTasks[1];
- }
- return null;
- }
-
- /**
- * Get all {@link ActivityManager.RecentTaskInfo}s grouped together.
- */
- @NonNull
- public List