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

Commit 5f057fd2 authored by Fan Wu's avatar Fan Wu Committed by Android (Google) Code Review
Browse files

Merge "[Catalyst] Create interface skeletons for AppList screen pages" into main

parents 2b343318 e9c2808e
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
}