| /* |
| * Copyright (C) 2024 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.documentsui; |
| |
| import android.compat.annotation.ChangeId; |
| import android.compat.annotation.EnabledAfter; |
| import android.os.Build; |
| |
| public final class ChangeIds { |
| /** |
| * We support restrict Storage Access Framework from {@link Build.VERSION_CODES#R}. |
| * App Compatibility flag that indicates whether the app should be restricted or not. |
| * This flag is turned on by default for all apps targeting > |
| * {@link Build.VERSION_CODES#Q}. |
| */ |
| @ChangeId |
| @EnabledAfter(targetSdkVersion = Build.VERSION_CODES.Q) |
| public static final long RESTRICT_STORAGE_ACCESS_FRAMEWORK = 141600225L; |
| } |