Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e9c2808e authored by Fan Wu's avatar Fan Wu
Browse files

[Catalyst] Create interface skeletons for AppList screen pages

Bug: 419435807
Test: Compile
Flag: EXEMPT refactor
Change-Id: I39aa9916f4e824ac3876713cc81f987cbccc20a9
parent d2960b2d
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2025 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.settings.applications

import com.android.settings.core.PreferenceScreenMixin
import com.android.settingslib.metadata.PreferenceHierarchyGenerator

/** Interface for all Catalyst screens showing an app list. */
interface AppListScreen : PreferenceScreenMixin, PreferenceHierarchyGenerator<Boolean> {}
+28 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2025 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.settings.applications.specialaccess

import android.content.Context
import android.content.pm.ApplicationInfo
import com.android.settings.applications.AppListScreen

/** Interface for Catalyst screens that display a list of apps with specific permission. */
interface SpecialAccessAppListScreen : AppListScreen {

    /** Returns whether the given application has requested certain permission. */
    fun hasRequestedPermission(context: Context, appInfo: ApplicationInfo): Boolean
}