Loading src/com/android/settings/applications/AppListScreen.kt 0 → 100644 +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> {} src/com/android/settings/applications/specialaccess/SpecialAccessAppListScreen.kt 0 → 100644 +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 } Loading
src/com/android/settings/applications/AppListScreen.kt 0 → 100644 +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> {}
src/com/android/settings/applications/specialaccess/SpecialAccessAppListScreen.kt 0 → 100644 +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 }