diff options
| author | 2021-10-14 18:05:59 +0000 | |
|---|---|---|
| committer | 2021-10-28 20:37:45 +0000 | |
| commit | 4b09aa9c0aa675a00a5da7718a44f3f7c6b9dfcc (patch) | |
| tree | 86f29f92fdcb4b3327599de75966b3df6cac2688 | |
| parent | 684a3c8fd8654ca3185f321164288a13f519bfc8 (diff) | |
Add config for the system supervision package.
Test: built
Bug: 186556111
Change-Id: Ie758fc9ce2cd9163bc879b40bf3531955f0ce119
| -rwxr-xr-x | core/api/system-current.txt | 1 | ||||
| -rw-r--r-- | core/res/res/values/config.xml | 3 | ||||
| -rw-r--r-- | core/res/res/values/public.xml | 4 |
3 files changed, 7 insertions, 1 deletions
diff --git a/core/api/system-current.txt b/core/api/system-current.txt index 95d06b0351e4..77c94a6fffba 100755 --- a/core/api/system-current.txt +++ b/core/api/system-current.txt @@ -383,6 +383,7 @@ package android { field public static final int config_systemNotificationIntelligence = 17039413; // 0x1040035 field public static final int config_systemShell = 17039402; // 0x104002a field public static final int config_systemSpeechRecognizer = 17039406; // 0x104002e + field public static final int config_systemSupervision; field public static final int config_systemTelevisionNotificationHandler = 17039409; // 0x1040031 field public static final int config_systemTextIntelligence = 17039414; // 0x1040036 field public static final int config_systemUi = 17039418; // 0x104003a diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index e4b3991f64f7..fceb951a7923 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -4697,6 +4697,9 @@ only. The component must be part of a system app. --> <string name="config_defaultSupervisionProfileOwnerComponent" translatable="false"></string> + <!-- The package name of the default supervision package. --> + <string name="config_systemSupervision" translatable="false"></string> + <!-- Trigger a warning for notifications with RemoteView objects that are larger in bytes than this value (default 1MB)--> <integer name="config_notificationWarnRemoteViewSizeBytes">2000000</integer> diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index ed49fe42d9db..366dccb67e72 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -3315,7 +3315,9 @@ <staging-public-group type="style" first-id="0x0dfd0000"> </staging-public-group> - <staging-public-group type="string" first-id="0x0dfc0000"> + <staging-public-group type="string" first-id="0x01dc0000"> + <!-- @hide @SystemApi --> + <public name="config_systemSupervision" /> </staging-public-group> <staging-public-group type="dimen" first-id="0x01db0000"> |