diff options
author | Shuo Qian <shuoq@google.com> | 2020-10-23 12:12:28 -0700 |
---|---|---|
committer | Shuo Qian <shuoq@google.com> | 2020-10-29 22:15:08 +0000 |
commit | e3edd0a3c31f47a25a60a433d531c51ed90c41c8 (patch) | |
tree | 616801f1a6711f2e04ffd9e3279aa613f9f5b048 /core/proto/android | |
parent | 6f000144cd4613e7f09e8f85046bb1634252a582 (diff) |
Try to add AppOps Keys into Proto to unblock my project
My code https://googleplex-android-review.git.corp.google.com/q/topic:%223rd-incall%22+(status:open%20OR%20status:merged),
which is adding a proto enum for a new AppOps, is causing presubmit
failure (https://android-build.googleplex.com/builds/tests/view?invocationId=I62800006309385464&redirect=http%3A%2F%2Fsponge2%2F8a607de5-e0c3-4349-b3c4-0ee397685e18&testResultId=TR55614315792892488).
I cannot check in my code because of this failure.
To solve this failure, one of the next step is:
adding AppOps 100-102 there
Test: Treehugger
Bug: 169595473
Change-Id: Ibd0f85575c9bc3d7aca9d5b011f1e5f0cbf960c1
Merged-In: Ibd0f85575c9bc3d7aca9d5b011f1e5f0cbf960c1
(cherry picked from commit 503ee6ad3be976c3a436a783cb4ee65169d92c16)
Diffstat (limited to 'core/proto/android')
-rw-r--r-- | core/proto/android/app/enums.proto | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/proto/android/app/enums.proto b/core/proto/android/app/enums.proto index bd5cb62f7fde..98ba029236e6 100644 --- a/core/proto/android/app/enums.proto +++ b/core/proto/android/app/enums.proto @@ -207,4 +207,7 @@ enum AppOpEnum { APP_OP_AUTO_REVOKE_PERMISSIONS_IF_UNUSED = 97; APP_OP_AUTO_REVOKE_MANAGED_BY_INSTALLER = 98; APP_OP_NO_ISOLATED_STORAGE = 99; + APP_OP_RESERVED_100 = 100; + APP_OP_RESERVED_101 = 101; + APP_OP_RESERVED_102 = 102; } |