diff options
| author | 2024-11-11 10:24:26 -0800 | |
|---|---|---|
| committer | 2024-11-11 10:30:33 -0800 | |
| commit | cf6ba67cd07cde3ff43dbe82d16f1ff9740f5ebf (patch) | |
| tree | f9b6c927452c27e3201c922ba3b6303cca0cb093 | |
| parent | 56a16722a6b7c87f145049138d20a7f181edfe82 (diff) | |
Add feature flag for AppOp noteOperation batching
This flag will be later used to enable noteOperation batching in
AppOpsManager
Flag: android.permission.flags.note_op_batching_enabled
Bug: 366013082
Test: presubmit
Change-Id: Ib51253429341a85805c44bfe8f339779a1bf68a9
| -rw-r--r-- | core/java/android/permission/flags.aconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/java/android/permission/flags.aconfig b/core/java/android/permission/flags.aconfig index 92c5c20a1f82..455b46983cbb 100644 --- a/core/java/android/permission/flags.aconfig +++ b/core/java/android/permission/flags.aconfig @@ -400,3 +400,12 @@ flag { description: "Uses the SysUi process to host the SelectionToolbarRenderService." bug: "363318732" } + +flag{ + name: "note_op_batching_enabled" + is_fixed_read_only: true + is_exported: true + namespace: "permissions" + description: "Batch noteOperations on the client to reduce binder call volume" + bug: "366013082" +} |