• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17syntax = "proto2";
18
19package android.app.tvsettings;
20option java_multiple_files = true;
21option java_outer_classname = "TvSettingsEnums";
22
23/** The performed action types */
24enum Action {
25
26    /**
27     * Denotes an unknown action. It is a filler that should generally be
28     * avoided.
29     */
30    ACTION_UNKNOWN = 0;
31
32    /**
33     * Denotes that a TvSettings page is being focused. (Previewing a page in
34     * two panel settings should NOT be considered as focusing on the page.)
35     */
36    PAGE_FOCUSED = 1;
37
38    /**
39     * Denotes that an entry (typically a leaf node of settings tree) is
40     * selected by a user.
41     */
42    ENTRY_SELECTED = 2;
43
44    /** Denotes that a toggle is clicked by a user. */
45    TOGGLE_INTERACTED = 3;
46
47    /**
48     * Denotes that a TvSettings page is being focused in the forward direction
49     * into the settings tree.
50     */
51    PAGE_FOCUSED_FORWARD = 4;
52
53    /**
54     * Denotes that a TvSettings page is being focused in the backward direction
55     * up the settings tree.
56     */
57    PAGE_FOCUSED_BACKWARD = 5;
58
59    /** Denotes that a toggle is turned on by a user. */
60    TOGGLED_ON = 6;
61
62    /** Denotes that a toggle is turned off by a user. */
63    TOGGLED_OFF = 7;
64
65}
66
67/**
68 * Ids for TvSettings focusable pages or actionable entries
69 *
70 * For details of the scheme, please refer to the "Definition of item_id" and
71 * "Evolve of item_id" sections in go/atv-settings-ww-logging-design.
72 */
73enum ItemId {
74
75    option allow_alias = true;
76
77    // Filler that should be avoided
78    UNKNOWN = 0x00000000;
79
80    // TvSettings
81    TV_SETTINGS_ROOT = 0x00000001;
82
83    // TvSettings unknown/default classic page
84    PAGE_CLASSIC_DEFAULT = 0x00000002;
85
86    // TvSettings unknown/default slice page
87    PAGE_SLICE_DEFAULT = 0x00000003;
88
89    // TvSettings unknown/default entry
90    ENTRY_DEFAULT = 0x00000004;
91
92    // TvSettings > Suggested settings entry
93    SUGGESTED_SETTINGS = 0x00000010;
94
95    // TvSettings > Quick Settings
96    QUICK_SETTINGS = 0x00000011;
97
98    // VERSION 1: Starting with Q
99    // These are ordered in depth-first search manner.
100
101    // TvSettings > Network & Internet
102    NETWORK = 0x11000000;
103
104    // TvSettings > Network & Internet > Wi-Fi (toggle)
105    NETWORK_WIFI_ON_OFF = 0x11100000;
106
107    // TvSettings > Network & Internet >
108    // [A connected network entry in available networks list]
109    NETWORK_AP_INFO = 0x11200000;
110
111    // TvSettings > Network & Internet >
112    // [A connected network entry in available networks list] > Proxy settings
113    NETWORK_AP_INFO_PROXY_SETTINGS = 0x11210000;
114
115    // TvSettings > Network & Internet >
116    // [A connected network entry in available networks list] > IP settings
117    NETWORK_AP_INFO_IP_SETTINGS = 0x11220000;
118
119    // TvSettings > Network & Internet >
120    // [A connected network entry in available networks list] > Forget network
121    NETWORK_AP_INFO_FORGET_NETWORK = 0x11230000;
122
123    // TvSettings > Network & Internet >
124    // [A not connected network entry in available networks list]
125    NETWORK_NOT_CONNECTED_AP = 0x11300000;
126
127    // TvSettings > Network & Internet > See all
128    NETWORK_SEE_ALL = 0x11400000;
129
130    // TvSettings > Network & Internet > See fewer
131    NETWORK_SEE_FEWER = 0x11500000;
132
133    // TvSettings > Network & Internet > Add new network
134    NETWORK_ADD_NEW_NETWORK = 0x11600000;
135
136    // TvSettings > Network & Internet > Scanning always available (toggle)
137    NETWORK_ALWAYS_SCANNING_NETWORKS = 0x11700000;
138
139    // TvSettings > Network & Internet > Proxy settings (in Ethernet category)
140    NETWORK_ETHERNET_PROXY_SETTINGS = 0x11800000;
141
142    // TvSettings > Network & Internet > IP settings (in Ethernet category)
143    NETWORK_ETHERNET_IP_SETTINGS = 0x11900000;
144
145    // TvSettings > Account & Sign In (Slice)
146    ACCOUNT_SLICE = 0x12000000;
147
148    // TvSettings > Account & Sign In (Slice) > [A regular account]
149    ACCOUNT_SLICE_REG_ACCOUNT = 0x12100000;
150
151    // TvSettings > Account & Sign In (Slice) > [A regular account] >
152    // Services
153    ACCOUNT_SLICE_REG_ACCOUNT_SERVICES = 0x12110000;
154
155    // TvSettings > Account & Sign In (Slice) > [A regular account] >
156    // Payment & Purchases
157    ACCOUNT_SLICE_REG_ACCOUNT_PAYMENT = 0x12120000;
158
159    // TvSettings > Account & Sign In (Slice) > [A regular account] >
160    // Payment & Purchases >
161    // Require authentication for purchases (reauth interval)
162    ACCOUNT_SLICE_REG_ACCOUNT_PAYMENT_REAUTH = 0x12121000;
163
164    // TvSettings > Account & Sign In (Slice) > [A regular account] >
165    // Payment & Purchases >
166    // Require authentication for purchases (reauth interval) > Always
167    ACCOUNT_SLICE_REG_ACCOUNT_PAYMENT_REAUTH_ALWAYS = 0x12121100;
168
169    // TvSettings > Account & Sign In (Slice) > [A regular account] >
170    // Payment & Purchases >
171    // Require authentication for purchases (reauth interval) > Every 30 minutes
172    ACCOUNT_SLICE_REG_ACCOUNT_PAYMENT_REAUTH_30MINS = 0x12121200;
173
174    // TvSettings > Account & Sign In (Slice) > [A regular account] >
175    // Payment & Purchases >
176    // Require authentication for purchases (reauth interval) > Never
177    ACCOUNT_SLICE_REG_ACCOUNT_PAYMENT_REAUTH_NEVER = 0x12121300;
178
179    // TvSettings > Account & Sign In (Slice) > [A regular account] >
180    // Google Assistant
181    ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT = 0x12130000;
182
183    // TvSettings > Account & Sign In (Slice) > [A regular account] >
184    // Google Assistant > SafeSearch filter (toggle)
185    ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_SAFE_SEARCH = 0x12131000;
186
187    // TvSettings > Account & Sign In (Slice) > [A regular account] >
188    // Google Assistant > Block offensive words (toggle)
189    ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_BLOCK_OFFENSIVE = 0x12132000;
190
191    // TvSettings > Account & Sign In (Slice) > [A regular account] >
192    // Google Assistant > Searchable apps
193    ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_SEARCHABLE_APPS = 0x12133000;
194
195    // TvSettings > Account & Sign In (Slice) > [A regular account] >
196    // Google Assistant > Personal results (toggle)
197    ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_PERSONAL_RESULTS = 0x12134000;
198
199    // TvSettings > Account & Sign In (Slice) > [A regular account] >
200    // Apps only mode (toggle)
201    ACCOUNT_SLICE_REG_ACCOUNT_APPS_ONLY_MODE = 0x12140000;
202
203    // Reserving [0x12150000, 0x12190000] for possible future settings
204
205    // TvSettings > Account & Sign In (Slice) > [A regular account] > Remove
206    ACCOUNT_SLICE_REG_ACCOUNT_REMOVE = 0x121A0000;
207
208    // Reserving [0x12200000, 0x12900000] for possible future settings
209
210    // TvSettings > Account & Sign In (Slice) > Add account...
211    ACCOUNT_SLICE_ADD_ACCOUNT = 0x12A00000;
212
213    // TvSettings > Account & Sign In (Classic)
214    ACCOUNT_CLASSIC = 0x13000000;
215
216    // TvSettings > Account & Sign In (Classic) > [A regular account]
217    ACCOUNT_CLASSIC_REG_ACCOUNT = 0x13100000;
218
219    // TvSettings > Account & Sign In (Classic) > [A regular account] > Sync now
220    ACCOUNT_CLASSIC_REG_ACCOUNT_SYNC_NOW = 0x13110000;
221
222    // TvSettings > Account & Sign In (Classic) > [A regular account] >
223    // Remove account
224    ACCOUNT_CLASSIC_REG_ACCOUNT_REMOVE_ACCOUNT = 0x13120000;
225
226    // TvSettings > Account & Sign In (Classic) > [A regular account] >
227    // [Choose synced apps] Calendar (toggle)
228    ACCOUNT_CLASSIC_REG_ACCOUNT_SYNC_CALENDAR = 0x13130000;
229
230    // TvSettings > Account & Sign In (Classic) > [A regular account] >
231    // [Choose synced apps] Contacts (toggle)
232    ACCOUNT_CLASSIC_REG_ACCOUNT_SYNC_CONTACTS = 0x13140000;
233
234    // TvSettings > Account & Sign In (Classic) > [A regular account] >
235    // [Choose synced apps] Google Play Movies & TV (toggle)
236    ACCOUNT_CLASSIC_REG_ACCOUNT_SYNC_GPMT = 0x13150000;
237
238    // TvSettings > Account & Sign In (Classic) > [A regular account] >
239    // [Choose synced apps] Google Play Music (toggle)
240    ACCOUNT_CLASSIC_REG_ACCOUNT_SYNC_GPM = 0x13160000;
241
242    // TvSettings > Account & Sign In (Classic) > [A regular account] >
243    // [Choose synced apps] People details (toggle)
244    ACCOUNT_CLASSIC_REG_ACCOUNT_SYNC_PEOPLE = 0x13170000;
245
246    // Reserving [0x13200000, 0x13900000] for possible future settings
247
248    // TvSettings > Account & Sign In (Classic) > Add account
249    ACCOUNT_CLASSIC_ADD_ACCOUNT = 0x13A00000;
250
251    // TvSettings > Privacy
252    PRIVACY = 0x14000000;
253
254    // TvSettings > Privacy > Location
255    PRIVACY_LOCATION = 0x14100000;
256
257    // TvSettings > Privacy > Location > Location status (radio button)
258    PRIVACY_LOCATION_STATUS = 0x14110000;
259
260    // TvSettings > Privacy > Location > Location status (radio button) >
261    // Use Wi-Fi to estimate location
262    PRIVACY_LOCATION_STATUS_USE_WIFI = 0x14111000;
263
264    // TvSettings > Privacy > Location > Location status (radio button) > Off
265    PRIVACY_LOCATION_STATUS_OFF = 0x14112000;
266
267    // TvSettings > Privacy > Location > Scanning always available (toggle)
268    PRIVACY_LOCATION_ALWAYS_SCANNING_NETWORKS = 0x14120000;
269
270    // TvSettings > Privacy > Location > [An app that had recent requests]
271    PRIVACY_LOCATION_REQUESTED_APP = 0x14130000;
272
273    // TvSettings > Privacy > Usage & Diagnostics
274    PRIVACY_DIAGNOSTICS = 0x14200000;
275
276    // TvSettings > Privacy > Usage & Diagnostics > On (Toggle)
277    PRIVACY_DIAGNOSTICS_ON_OFF = 0x14210000;
278
279    // TvSettings > Privacy > Ads
280    PRIVACY_ADS = 0x14300000;
281
282    // The following three IDs may not actually be logged as they are within a
283    // GMSCore Activity but we reserve IDs for them.
284    // TvSettings > Privacy > Ads > Reset advertising ID
285    PRIVACY_ADS_RESET_AD_ID = 0x14310000;
286
287    // TvSettings > Privacy > Ads > Opt out of Ads Personalization
288    PRIVACY_ADS_OPT_OUT_PERSONALIZATION = 0x14320000;
289
290    // TvSettings > Privacy > Ads > Ads by Google (WebView)
291    PRIVACY_ADS_ADS_BY_GOOGLE = 0x14330000;
292
293    // TvSettings > Privacy > Microphone
294    PRIVACY_MICROPHONE = 0x14400000;
295
296    // TvSettings > Privacy > Microphone > Microphone access (toggle)
297    PRIVACY_MICROPHONE_ACCESS = 0x14410000;
298
299    // TvSettings > Privacy > Microphone > Microphone access on your remote (toggle)
300    PRIVACY_MICROPHONE_ACCESS_ON_REMOTE = 0x14420000;
301
302    // TvSettings > Display & Sound
303    DISPLAY_SOUND = 0x15000000;
304
305    // TvSettings > Display & Sound > Advanced display settings
306    DISPLAY_SOUND_ADVANCED_DISPLAY = 0x15100000;
307
308    // TvSettings > Display & Sound > Advanced display settings >
309    // Allow game mode (toggle)
310    DISPLAY_SOUND_ADVANCED_DISPLAY_GAME_MODE = 0x15110000;
311
312    // TvSettings > Display & Sound > Advanced display settings >
313    // Format Selection
314    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION = 0x15120000;
315
316    // TvSettings > Display & Sound > Advanced display settings >
317    // Format Selection > Auto
318    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_AUTO = 0x15121000;
319
320    // TvSettings > Display & Sound > Advanced display settings >
321    // Format Selection > Manual
322    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_MANUAL = 0x15122000;
323
324    // TvSettings > Display & Sound > Advanced display settings >
325    // Format Selection > Dolby Vision
326    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_DOLBY_VISION = 0x15123000;
327
328    // TvSettings > Display & Sound > Advanced display settings >
329    // Format Selection > HDR 10
330    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_HDR10 = 0x15124000;
331
332    // TvSettings > Display & Sound > Advanced display settings >
333    // Format Selection > HLG
334    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_HLG = 0x15125000;
335
336    // TvSettings > Display & Sound > Advanced display settings >
337    // Format Selection > HDR10+
338    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_HDR10_PLUS = 0x15126000;
339
340    // TvSettings > Display & Sound > System sounds (toggle)
341    DISPLAY_SOUND_SYSTEM_SOUNDS = 0x15200000;
342
343    // TvSettings > Display & Sound > Advanced sound settings
344    DISPLAY_SOUND_ADVANCED_SOUNDS = 0x15300000;
345
346    // TvSettings > Display & Sound > Advanced sound settings > Select formats
347    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS = 0x15310000;
348
349    // TvSettings > Display & Sound > Advanced sound settings > Select formats >
350    // Auto...
351    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS_AUTO = 0x15311000;
352
353    // TvSettings > Display & Sound > Advanced sound settings > Select formats >
354    // None...
355    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS_NONE = 0x15312000;
356
357    // TvSettings > Display & Sound > Advanced sound settings > Select formats >
358    // Manual...
359    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS_MANUAL = 0x15313000;
360
361    // TvSettings > Display & Sound > Advanced sound settings >
362    // Dolby AC-4 (toggle)
363    DISPLAY_SOUND_ADVANCED_SOUNDS_DAC4 = 0x15320000;
364
365    // TvSettings > Display & Sound > Advanced sound settings >
366    // Dolby Atmos in Dolby Digital Plus (toggle)
367    DISPLAY_SOUND_ADVANCED_SOUNDS_DADDP = 0x15330000;
368
369    // TvSettings > Display & Sound > Advanced sound settings >
370    // Dolby Digital (toggle)
371    DISPLAY_SOUND_ADVANCED_SOUNDS_DD = 0x15340000;
372
373    // TvSettings > Display & Sound > Advanced sound settings >
374    // Dolby Digital Plus (toggle)
375    DISPLAY_SOUND_ADVANCED_SOUNDS_DDP = 0x15350000;
376
377    // TvSettings > Display & Sound > Advanced sound settings > DTS (toggle)
378    DISPLAY_SOUND_ADVANCED_SOUNDS_DTS = 0x15360000;
379
380    // TvSettings > Display & Sound > Advanced sound settings > DTS-UHD (toggle)
381    DISPLAY_SOUND_ADVANCED_SOUNDS_DTSUHD = 0x15361000;
382
383    // TvSettings > Display & Sound > Advanced sound settings > DRA (toggle)
384    DISPLAY_SOUND_ADVANCED_SOUNDS_DRA = 0x15362000;
385
386    // TvSettings > Display & Sound > Advanced sound settings > DTS-HD (toggle)
387    DISPLAY_SOUND_ADVANCED_SOUNDS_DTSHD = 0x15370000;
388
389    // TvSettings > Display & Sound > Advanced sound settings > AAC (toggle)
390    DISPLAY_SOUND_ADVANCED_SOUNDS_AAC = 0x15380000;
391
392    // TvSettings > Display & Sound > Advanced sound settings >
393    // Dolby TrueHD (toggle)
394    DISPLAY_SOUND_ADVANCED_SOUNDS_DTHD = 0x15390000;
395
396    // TvSettings > Display & Sound > Match content frame rate
397    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE = 0x15500000;
398
399    // TvSettings > Display & Sound > Match content frame rate >
400    // Seamless (toggle)
401    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE_SEAMLESS = 0x15510000;
402
403    // TvSettings > Display & Sound > Match content frame rate >
404    // Non-seamless (toggle)
405    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE_NON_SEAMLESS = 0x15520000;
406
407    // TvSettings > Display & Sound > Match content frame rate >
408    // Never (toggle)
409    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE_NEVER = 0x15530000;
410
411    // TvSettings > Display & Sound > Text scaling
412    DISPLAY_SOUND_TEXT_SCALING = 0x15600000;
413
414    // TvSettings > Display & Sound > Text scaling > Small (entry)
415    DISPLAY_SOUND_TEXT_SCALING_SMALL = 0x15610000;
416
417    // TvSettings > Display & Sound > Text scaling > Default (entry)
418    DISPLAY_SOUND_TEXT_SCALING_DEFAULT = 0x15620000;
419
420    // TvSettings > Display & Sound > Text scaling > Large (entry)
421    DISPLAY_SOUND_TEXT_SCALING_LARGE = 0x15630000;
422
423    // TvSettings > Display & Sound > Text scaling > Largest (entry)
424    DISPLAY_SOUND_TEXT_SCALING_LARGEST = 0x15640000;
425
426    // TvSettings > Apps
427    APPS = 0x16000000;
428
429    // TvSettings > Apps > See all apps
430    APPS_ALL_APPS = 0x16100000;
431
432    // TvSettings > Apps > See all apps > [An app entry]
433    APPS_ALL_APPS_APP_ENTRY = 0x16110000;
434
435    // TvSettings > Apps > See all apps > [An app entry] > Open
436    APPS_ALL_APPS_APP_ENTRY_OPEN = 0x16111000;
437
438    // TvSettings > Apps > See all apps > [An app entry] > Force stop
439    APPS_ALL_APPS_APP_ENTRY_FORCE_STOP = 0x16112000;
440
441    // TvSettings > Apps > See all apps > [An app entry] > Uninstall
442    APPS_ALL_APPS_APP_ENTRY_UNINSTALL = 0x16113000;
443
444    // TvSettings > Apps > See all apps > [An app entry] > Uninstall updates
445    APPS_ALL_APPS_APP_ENTRY_UNINSTALL_UPDATES = 0x16114000;
446
447    // TvSettings > Apps > See all apps > [An app entry] > Disable
448    APPS_ALL_APPS_APP_ENTRY_DISABLE = 0x16115000;
449
450    // TvSettings > Apps > See all apps > [An app entry] > Clear data
451    APPS_ALL_APPS_APP_ENTRY_CLEAR_DATA = 0x16116000;
452
453    // TvSettings > Apps > See all apps > [An app entry] > Clear cache
454    APPS_ALL_APPS_APP_ENTRY_CLEAR_CACHE = 0x16117000;
455
456    // TvSettings > Apps > See all apps > [An app entry] > Clear defaults
457    APPS_ALL_APPS_APP_ENTRY_CLEAR_DEFAULTS = 0x16118000;
458
459    // TvSettings > Apps > See all apps > [An app entry] >
460    // Notifications (toggle)
461    APPS_ALL_APPS_APP_ENTRY_NOTIFICATIONS = 0x16119000;
462
463    // TvSettings > Apps > See all apps > [An app entry] > Permissions
464    APPS_ALL_APPS_APP_ENTRY_PERMISSIONS = 0x1611A000;
465
466    // TvSettings > Apps > See all apps > [An app entry] > Enable
467    APPS_ALL_APPS_APP_ENTRY_ENABLE = 0x1611B000;
468
469    // TvSettings > Apps > See all apps > [An app entry] > Open source licenses
470    APPS_ALL_APPS_APP_ENTRY_LICENSES = 0x1611C000;
471
472    // TvSettings > Apps > See all apps > [An app entry] > Remove permissions Toggle
473    APPS_ALL_APPS_APP_ENTRY_HIBERNATION = 0x1611D000;
474
475    // TvSettings > Apps > See all apps > Show system apps
476    APPS_ALL_APPS_SHOW_SYSTEM_APPS = 0x16120000;
477
478    // TvSettings > Apps > App permissions
479    APPS_APP_PERMISSIONS = 0x16200000;
480
481    // TvSettings > Apps > App permission > Body sensors
482    APPS_APP_PERMISSIONS_BODY_SENSORS = 0x16210000;
483
484    // TvSettings > Apps > App permission > Calendar
485    APPS_APP_PERMISSIONS_CALENDAR = 0x16220000;
486
487    // TvSettings > Apps > App permission > Call logs
488    APPS_APP_PERMISSIONS_CALL_LOGS = 0x16230000;
489
490    // TvSettings > Apps > App permission > Camera
491    APPS_APP_PERMISSIONS_CAMERA = 0x16240000;
492
493    // TvSettings > Apps > App permission > Contacts
494    APPS_APP_PERMISSIONS_CONTACTS = 0x16250000;
495
496    // TvSettings > Apps > App permission > Location
497    APPS_APP_PERMISSIONS_LOCATION = 0x16260000;
498
499    // TvSettings > Apps > App permission > Microphone
500    APPS_APP_PERMISSIONS_MICROPHONE = 0x16270000;
501
502    // TvSettings > Apps > App permission > Phone
503    APPS_APP_PERMISSIONS_PHONE = 0x16280000;
504
505    // TvSettings > Apps > App permission > Physical activity
506    APPS_APP_PERMISSIONS_PHYSICAL_ACTIVITY = 0x16290000;
507
508    // TvSettings > Apps > App permission > SMS
509    APPS_APP_PERMISSIONS_SMS = 0x162A0000;
510
511    // TvSettings > Apps > App permission > Storage
512    APPS_APP_PERMISSIONS_STORAGE = 0x162B0000;
513
514    // TvSettings > Apps > App permission > Additional permissions
515    APPS_APP_PERMISSIONS_ADDITIONAL = 0x162C0000;
516
517    // TvSettings > Apps > App permission > Additional permissions >
518    // real all TV listings
519    APPS_APP_PERMISSIONS_ADDITIONAL_READ_TV_LISTINGS = 0x162C1000;
520
521    // TvSettings > Apps > App permission > Additional permissions >
522    // real instant messages
523    APPS_APP_PERMISSIONS_ADDITIONAL_READ_INSTANT_MESSAGES = 0x162C2000;
524
525    // TvSettings > Apps > App permission > Additional permissions >
526    // write instant messages
527    APPS_APP_PERMISSIONS_ADDITIONAL_WRITE_INSTANT_MESSAGES = 0x162C3000;
528
529    // TvSettings > Apps > Special app access
530    APPS_SPECIAL_APP_ACCESS = 0x16300000;
531
532    // TvSettings > Apps > Special app access > Energy optimization
533    APPS_SPECIAL_APP_ACCESS_ENERGY_OPTIMIZATION = 0x16310000;
534
535    // TvSettings > Apps > Special app access > Usage access
536    APPS_SPECIAL_APP_ACCESS_USAGE_ACCESS = 0x16320000;
537
538    // TvSettings > Apps > Special app access > Notification access
539    APPS_SPECIAL_APP_ACCESS_NOTIFICATION_ACCESS = 0x16330000;
540
541    // TvSettings > Apps > Special app access > Display over other apps
542    APPS_SPECIAL_APP_ACCESS_DISPLAY_OVER_OTHERS = 0x16340000;
543
544    // TvSettings > Apps > Special app access > Modify system settings
545    APPS_SPECIAL_APP_ACCESS_MODIFY_SYSTEM_SETTINGS = 0x16350000;
546
547    // TvSettings > Apps > Special app access > Picture-in-picture
548    APPS_SPECIAL_APP_ACCESS_PICTURE_IN_PICTURE = 0x16360000;
549
550    // TvSettings > Apps > Special app access > Alarms & Reminders
551    APPS_SPECIAL_APP_ACCESS_ALARMS_AND_REMINDERS = 0x16370000;
552
553    // TvSettings > Apps > Special app access > All files access
554    APPS_SPECIAL_APP_ACCESS_ALL_FILES_ACCESS = 0x16380000;
555
556    // TvSettings > Apps > Special app access > Turn screen on
557    APPS_SPECIAL_APP_ACCESS_TURN_SCREEN_ON = 0x16390000;
558
559    // TvSettings > Apps > Security & restrictions
560    APPS_SECURITY_RESTRICTIONS = 0x16400000;
561
562    // TvSettings > Apps > Security & restrictions > Unknown sources
563    APPS_SECURITY_RESTRICTIONS_UNKNOWN_SOURCES = 0x16410000;
564
565    // TvSettings > Apps > Security & restrictions > Verify apps (toggle)
566    APPS_SECURITY_RESTRICTIONS_VERIFY_APPS = 0x16420000;
567
568    // TvSettings > Apps > Security & restrictions > Create restricted profile
569    APPS_SECURITY_RESTRICTIONS_CREATE_PROFILE = 0x16430000;
570
571    // TvSettings > Apps > Security & restrictions > Enter restricted profile
572    APPS_SECURITY_RESTRICTIONS_ENTER_PROFILE = 0x16440000;
573
574    // TvSettings > Apps > Security & restrictions >
575    // Allowed apps (Restricted Profile)
576    APPS_SECURITY_RESTRICTIONS_PROFILE_ALLOWED_APPS = 0x16450000;
577
578    // TvSettings > Apps > Security & restrictions >
579    // Change pin (Restricted Profile)
580    APPS_SECURITY_RESTRICTIONS_PROFILE_CHANGE_PIN = 0x16460000;
581
582    // TvSettings > Apps > Security & restrictions >
583    // Delete restricted profile
584    APPS_SECURITY_RESTRICTIONS_DELETE_PROFILE = 0x16470000;
585
586    // TvSettings > Apps > Security & restrictions >
587    // Exit restricted profile
588    APPS_SECURITY_RESTRICTIONS_EXIT_PROFILE = 0x16480000;
589
590    // TvSettings > Unused apps
591    APPS_UNUSED_APPS = 0x16500000;
592
593    // TvSettings > System (same as TvSettings > Device Preferences)
594    SYSTEM = 0x17000000;
595
596    // TvSettings > System > About
597    SYSTEM_ABOUT = 0x17100000;
598
599    // TvSettings > System > System update
600    SYSTEM_ABOUT_SYSTEM_UPDATE = 0x17110000;
601
602    // TvSettings > System > Device name
603    SYSTEM_ABOUT_DEVICE_NAME = 0x17120000;
604
605    // TvSettings > System > Factory reset
606    SYSTEM_ABOUT_FACTORY_RESET = 0x17130000;
607
608    // TvSettings > System > Status
609    SYSTEM_ABOUT_STATUS = 0x17140000;
610
611    // TvSettings > System > Legal information
612    SYSTEM_ABOUT_LEGAL_INFO = 0x17150000;
613
614    // TvSettings > System > Legal information > Open source licenses
615    SYSTEM_ABOUT_LEGAL_INFO_OPEN_SOURCE = 0x17151000;
616
617    // TvSettings > System > Legal information > Google legal
618    SYSTEM_ABOUT_LEGAL_INFO_GOOGLE_LEGAL = 0x17152000;
619
620    // TvSettings > System > Legal information > System WebView licenses
621    SYSTEM_ABOUT_LEGAL_INFO_SYSTEM_WEBVIEW = 0x17153000;
622
623    // TvSettings > System > Build
624    SYSTEM_ABOUT_BUILD = 0x17160000;
625
626    // TvSettings > System > Date & time
627    SYSTEM_DATE_TIME = 0x17200000;
628
629    // TvSettings > System > Date & time > Automatic data & time
630    SYSTEM_DATE_TIME_AUTOMATIC = 0x17210000;
631
632    // TvSettings > System > Date & time > Automatic data & time >
633    // Use network-provided time
634    SYSTEM_DATE_TIME_AUTOMATIC_USE_NETWORK_TIME = 0x17211000;
635
636    // TvSettings > System > Date & time > Automatic data & time > Off
637    SYSTEM_DATE_TIME_AUTOMATIC_OFF = 0x17212000;
638
639    // TvSettings > System > Date & time > Set date
640    SYSTEM_DATE_TIME_SET_DATE = 0x17220000;
641
642    // TvSettings > System > Date & time > Set time
643    SYSTEM_DATE_TIME_SET_TIME = 0x17230000;
644
645    // TvSettings > System > Date & time > Set time zone
646    SYSTEM_DATE_TIME_SET_TIME_ZONE = 0x17240000;
647
648    // TvSettings > System > Date & time > Set time zone > [A time zone button]
649    SYSTEM_DATE_TIME_SET_TIME_ZONE_BUTTON = 0x17241000;
650
651    // TvSettings > System > Date & time > Use 24-hour format (toggle)
652    SYSTEM_DATE_TIME_USE_24_HOUR_FORMAT = 0x17250000;
653
654    // TvSettings > System > Language
655    SYSTEM_LANGUAGE = 0x17300000;
656
657    // TvSettings > System > Language > [A language button]
658    SYSTEM_LANGUAGE_BUTTON = 0x17310000;
659
660    // TvSettings > System > Keyboard
661    SYSTEM_KEYBOARD = 0x17400000;
662
663    // TvSettings > System > Keyboard > Current keyboard
664    SYSTEM_KEYBOARD_CURRENT_KEYBOARD = 0x17410000;
665
666    // TvSettings > System > Keyboard > Gboard Settings
667    SYSTEM_KEYBOARD_GBOARD_SETTINGS = 0x17420000;
668
669    // TvSettings > System > Keyboard > Gboard Settings > Languages
670    SYSTEM_KEYBOARD_GBOARD_SETTINGS_LANGUAGES = 0x17421000;
671
672    // TvSettings > System > Keyboard > Gboard Settings > Terms of services
673    SYSTEM_KEYBOARD_GBOARD_SETTINGS_TOS = 0x17422000;
674
675    // TvSettings > System > Keyboard > Gboard Settings > Privacy policy
676    SYSTEM_KEYBOARD_GBOARD_SETTINGS_PRIVACY_POLICY = 0x17423000;
677
678    // TvSettings > System > Keyboard > Gboard Settings > Open source licenses
679    SYSTEM_KEYBOARD_GBOARD_SETTINGS_OPEN_SOURCE = 0x17424000;
680
681    // TvSettings > System > Keyboard > Gboard Settings >
682    // Share usage statistics (toggle)
683    SYSTEM_KEYBOARD_GBOARD_SETTINGS_SHARE_USAGE_STATS = 0x17425000;
684
685    // TvSettings > System > Keyboard > Manage keyboards
686    SYSTEM_KEYBOARD_MANAGE_KEYBOARDS = 0x17430000;
687
688    // TvSettings > System > Storage
689    SYSTEM_STORAGE = 0x17500000;
690
691    // TvSettings > System > Internal shared storage
692    SYSTEM_STORAGE_INTERNAL_STORAGE = 0x17510000;
693
694    // TvSettings > System > Internal shared storage > Apps
695    SYSTEM_STORAGE_INTERNAL_STORAGE_APPS = 0x17511000;
696
697    // TvSettings > System > Internal shared storage >
698    // Cached data (brings up "Clear cached data?" dialog upon click)
699    SYSTEM_STORAGE_INTERNAL_STORAGE_CACHED = 0x17512000;
700
701    // TvSettings > System > Free up storage
702    SYSTEM_STORAGE_FREE_UP_STORAGE = 0x17520000;
703
704    // TvSettings > System > Free up storage >
705    // Clear cached data (brings up "Clear cached data?" dialog upon click)
706    SYSTEM_STORAGE_FREE_UP_STORAGE_CLEAR_CACHED_DATA = 0x17521000;
707
708    // TvSettings > System > Free up storage > Uninstall apps
709    SYSTEM_STORAGE_FREE_UP_STORAGE_UNINSTALL_APPS = 0x17522000;
710
711    // TvSettings > System > Ambient mode
712    SYSTEM_AMBIENT = 0x17600000;
713
714    // TvSettings > System > Ambient mode > Start now
715    SYSTEM_AMBIENT_START = 0x17610000;
716
717    // TvSettings > System > Ambient mode > Settings
718    SYSTEM_AMBIENT_SETTINGS = 0x17620000;
719
720    // TvSettings > System > Ambient mode > Settings > Google Photos (Channels)
721    SYSTEM_AMBIENT_SETTINGS_CHANNEL_GP = 0x17621000;
722
723    // TvSettings > System > Ambient mode > Settings > Art gallery (Channels)
724    SYSTEM_AMBIENT_SETTINGS_CHANNEL_AG = 0x17622000;
725
726    // TvSettings > System > Ambient mode > Settings >
727    // Cinematic videos (Channels)
728    SYSTEM_AMBIENT_SETTINGS_CHANNEL_CV = 0x17623000;
729
730    // TvSettings > System > Ambient mode > Settings > Experimental (Channels)
731    SYSTEM_AMBIENT_SETTINGS_CHANNEL_EXP = 0x17624000;
732
733    // TvSettings > System > Ambient mode > Settings > Weather
734    SYSTEM_AMBIENT_SETTINGS_WEATHER = 0x17625000;
735
736    // TvSettings > System > Ambient mode > Settings > Weather > Hide
737    SYSTEM_AMBIENT_SETTINGS_WEATHER_HIDE = 0x17625100;
738
739    // TvSettings > System > Ambient mode > Settings > Weather > Celsius (Unit)
740    SYSTEM_AMBIENT_SETTINGS_WEATHER_UNIT_C = 0x17625200;
741
742    // TvSettings > System > Ambient mode > Settings > Weather >
743    // Fahrenheit (Unit)
744    SYSTEM_AMBIENT_SETTINGS_WEATHER_UNIT_F = 0x17625300;
745
746    // TvSettings > System > Ambient mode > Settings > Weather > Both (Unit)
747    SYSTEM_AMBIENT_SETTINGS_WEATHER_UNIT_BOTH = 0x17625400;
748
749    // TvSettings > System > Ambient mode > Settings > Time
750    SYSTEM_AMBIENT_SETTINGS_TIME = 0x17626000;
751
752    // TvSettings > System > Ambient mode > Settings > Time > Hide
753    SYSTEM_AMBIENT_SETTINGS_TIME_HIDE = 0x17626100;
754
755    // TvSettings > System > Ambient mode > Settings > Time > Show
756    SYSTEM_AMBIENT_SETTINGS_TIME_SHOW = 0x17626200;
757
758    // TvSettings > System > Ambient mode > Settings > Device information
759    SYSTEM_AMBIENT_SETTINGS_DEVICE_INFO = 0x17627000;
760
761    // TvSettings > System > Ambient mode > Settings > Device information > Hide
762    SYSTEM_AMBIENT_SETTINGS_DEVICE_INFO_HIDE = 0x17627100;
763
764    // TvSettings > System > Ambient mode > Settings > Device information > Show
765    SYSTEM_AMBIENT_SETTINGS_DEVICE_INFO_SHOW = 0x17627200;
766
767    // TvSettings > System > Ambient mode > Settings > Personal photo data
768    SYSTEM_AMBIENT_SETTINGS_PPD = 0x17628000;
769
770    // TvSettings > System > Ambient mode > Settings > Personal photo data >
771    // Hide
772    SYSTEM_AMBIENT_SETTINGS_PPD_HIDE = 0x17628100;
773
774    // TvSettings > System > Ambient mode > Settings > Personal photo data >
775    // Show
776    SYSTEM_AMBIENT_SETTINGS_PPD_SHOW = 0x17628200;
777
778    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos
779    SYSTEM_AMBIENT_SETTINGS_PGP = 0x17629000;
780
781    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos >
782    // Hide
783    SYSTEM_AMBIENT_SETTINGS_PGP_HIDE = 0x17629100;
784
785    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos >
786    // Show
787    SYSTEM_AMBIENT_SETTINGS_PGP_SHOW = 0x17629200;
788
789    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos >
790    // Show pairs
791    SYSTEM_AMBIENT_SETTINGS_PGP_SHOW_PAIRS = 0x17629300;
792
793    // TvSettings > System > Ambient mode > Settings > Personal photo curation
794    SYSTEM_AMBIENT_SETTINGS_PPC = 0x1762A000;
795
796    // TvSettings > System > Ambient mode > Settings > Personal photo curation >
797    // All albums
798    SYSTEM_AMBIENT_SETTINGS_PPC_ALL_ALBUMS = 0x1762A100;
799
800    // TvSettings > System > Ambient mode > Settings > Personal photo curation >
801    // Live albums only
802    SYSTEM_AMBIENT_SETTINGS_PPC_LIVE_ALBUMS = 0x1762A200;
803
804    // TvSettings > System > Ambient mode > Settings > Slideshow speed
805    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED = 0x1762B000;
806
807    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 5s
808    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_5S = 0x1762B100;
809
810    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 10s
811    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_10S = 0x1762B200;
812
813    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 30s
814    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_30S = 0x1762B300;
815
816    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 1m
817    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_1M = 0x1762B400;
818
819    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 3m
820    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_3M = 0x1762B500;
821
822    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 5m
823    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_5M = 0x1762B600;
824
825    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 10m
826    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_10M = 0x1762B700;
827
828    // TvSettings > System > Energy saver
829    SYSTEM_ENERGYSAVER = 0x17700000;
830
831    // TvSettings > System > Energy saver > Turn off display after
832    SYSTEM_ENERGYSAVER_START_DELAY = 0x17710000;
833
834    // TvSettings > System > Energy saver > Turn off display after > 15 minutes
835    SYSTEM_ENERGYSAVER_START_DELAY_15M = 0x17711000;
836
837    // TvSettings > System > Energy saver > Turn off display after > 30 minutes
838    SYSTEM_ENERGYSAVER_START_DELAY_30M = 0x17712000;
839
840    // TvSettings > System > Energy saver > Turn off display after > 1 hour
841    SYSTEM_ENERGYSAVER_START_DELAY_1H = 0x17713000;
842
843    // TvSettings > System > Energy saver > Turn off display after > 3 hours
844    SYSTEM_ENERGYSAVER_START_DELAY_3H = 0x17714000;
845
846    // TvSettings > System > Energy saver > Turn off display after > 6 hours
847    SYSTEM_ENERGYSAVER_START_DELAY_6H = 0x17715000;
848
849    // TvSettings > System > Energy saver > Turn off display after > 12 hours
850    SYSTEM_ENERGYSAVER_START_DELAY_12H = 0x17716000;
851
852    // TvSettings > System > Energy saver > Turn off display after > Never
853    SYSTEM_ENERGYSAVER_START_DELAY_NEVER = 0x17717000;
854
855    // TvSettings > System > Power & Energy
856    SYSTEM_POWER_AND_ENERGY = 0x17E00000;
857
858    // TvSettings > System > Power & Energy > Eco settings
859    SYSTEM_POWER_AND_ENERGY_ECO_SETTINGS = 0x17E10000;
860
861    // TvSettings > System > Power & Energy > Energy Modes
862    SYSTEM_POWER_AND_ENERGY_ENERGY_MODES = 0x17E20000;
863
864    // TvSettings > System > Accessibility
865    SYSTEM_A11Y = 0x17800000;
866
867    // TvSettings > System > Accessibility > Captions
868    SYSTEM_A11Y_CAPTIONS = 0x17810000;
869
870    // TvSettings > System > Accessibility > Captions > Display (toggle)
871    SYSTEM_A11Y_CAPTIONS_DISPLAY_ON_OFF = 0x17811000;
872
873    // TvSettings > System > Accessibility > Captions > Language
874    SYSTEM_A11Y_CAPTIONS_LANGUAGE = 0x17812000;
875
876    // TvSettings > System > Accessibility > Captions > Language > [A language]
877    SYSTEM_A11Y_CAPTIONS_LANGUAGE_BUTTON = 0x17812100;
878
879    // TvSettings > System > Accessibility > Captions > Text size
880    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE = 0x17813000;
881
882    // TvSettings > System > Accessibility > Captions > Text size > Very small
883    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_VERY_SMALL = 0x17813100;
884
885    // TvSettings > System > Accessibility > Captions > Text size > Small
886    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_SMALL = 0x17813200;
887
888    // TvSettings > System > Accessibility > Captions > Text size > Normal
889    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_NORMAL = 0x17813300;
890
891    // TvSettings > System > Accessibility > Captions > Text size > Large
892    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_LARGE = 0x17813400;
893
894    // TvSettings > System > Accessibility > Captions > Text size > Very large
895    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_VERY_LARGE = 0x17813500;
896
897    // TvSettings > System > Accessibility > Captions >
898    // White on black (radio button)
899    SYSTEM_A11Y_CAPTIONS_WHITE_ON_BLACK = 0x17814000;
900
901    // TvSettings > System > Accessibility > Captions >
902    // Black on white (radio button)
903    SYSTEM_A11Y_CAPTIONS_BLACK_ON_WHITE = 0x17815000;
904
905    // TvSettings > System > Accessibility > Captions >
906    // Yellow on black (radio button)
907    SYSTEM_A11Y_CAPTIONS_YELLOW_ON_BLACK = 0x17816000;
908
909    // TvSettings > System > Accessibility > Captions >
910    // Yellow on blue (radio button)
911    SYSTEM_A11Y_CAPTIONS_YELLOW_ON_BLUE = 0x17817000;
912
913    // TvSettings > System > Accessibility > Captions > Custom
914    SYSTEM_A11Y_CAPTIONS_CUSTOM = 0x17818000;
915
916    // TvSettings > System > Accessibility > Captions > Custom > Font family
917    SYSTEM_A11Y_CAPTIONS_CUSTOM_FONT = 0x17818100;
918
919    // TvSettings > System > Accessibility > Captions > Custom > Text color
920    SYSTEM_A11Y_CAPTIONS_CUSTOM_TEXT_COLOR = 0x17818200;
921
922    // TvSettings > System > Accessibility > Captions > Custom > Text opacity
923    SYSTEM_A11Y_CAPTIONS_CUSTOM_TEXT_OPACITY = 0x17818300;
924
925    // TvSettings > System > Accessibility > Captions > Custom > Edge type
926    SYSTEM_A11Y_CAPTIONS_CUSTOM_EDGE_TYPE = 0x17818400;
927
928    // TvSettings > System > Accessibility > Captions > Custom > Edge color
929    SYSTEM_A11Y_CAPTIONS_CUSTOM_EDGE_COLOR = 0x17818500;
930
931    // TvSettings > System > Accessibility > Captions > Custom >
932    // Show background (toggle)
933    SYSTEM_A11Y_CAPTIONS_SHOW_BACKGROUND = 0x17818600;
934
935    // TvSettings > System > Accessibility > Captions > Custom >
936    // Background color
937    SYSTEM_A11Y_CAPTIONS_BACKGROUND_COLOR = 0x17818700;
938
939    // TvSettings > System > Accessibility > Captions > Custom >
940    // Background opacity
941    SYSTEM_A11Y_CAPTIONS_BACKGROUND_OPACITY = 0x17818800;
942
943    // TvSettings > System > Accessibility > Captions > Custom >
944    // Show window (toggle)
945    SYSTEM_A11Y_CAPTIONS_SHOW_WINDOW = 0x17818900;
946
947    // TvSettings > System > Accessibility > Captions > Custom > Window color
948    SYSTEM_A11Y_CAPTIONS_WINDOW_COLOR = 0x17818A00;
949
950    // TvSettings > System > Accessibility > Captions > Custom > Window opacity
951    SYSTEM_A11Y_CAPTIONS_WINDOW_OPACITY = 0x17818B00;
952
953    // TvSettings > System > Accessibility > High contrast text (toggle)
954    SYSTEM_A11Y_HIGH_CONTRAST_TEXT = 0x17820000;
955
956    // TvSettings > System > Accessibility > Text to speech
957    SYSTEM_A11Y_TTS = 0x17830000;
958
959    // TvSettings > System > Accessibility > Text to speech > [Select an engine]
960    SYSTEM_A11Y_TTS_ENGINE_SELECT = 0x17831000;
961
962    // TvSettings > System > Accessibility > Text to speech >
963    // Engine configuration
964    SYSTEM_A11Y_TTS_ENGINE_CONFIG = 0x17832000;
965
966    // TvSettings > System > Accessibility > Text to speech >
967    // Engine configuration > Language
968    SYSTEM_A11Y_TTS_ENGINE_CONFIG_LANGUAGE = 0x17832100;
969
970    // TvSettings > System > Accessibility > Text to speech >
971    // Engine configuration > Language > Button
972    SYSTEM_A11Y_TTS_ENGINE_CONFIG_LANGUAGE_CHOOSE_LANGUAGE = 0x17832110;
973
974    // TvSettings > System > Accessibility > Text to speech >
975    // Engine configuration > Settings for Google Text-to-speech Engine
976    SYSTEM_A11Y_TTS_ENGINE_CONFIG_SETTINGS_GTTS_ENGINE = 0x17832200;
977
978    // TvSettings > System > Accessibility > Text to speech >
979    // Engine configuration > Install voice data
980    SYSTEM_A11Y_TTS_ENGINE_CONFIG_INSTALL_VOICE_DATA = 0x17832300;
981
982    // TvSettings > System > Accessibility > Text to speech > Speech rate
983    SYSTEM_A11Y_TTS_SPEECH_RATE = 0x17833000;
984
985    // TvSettings > System > Accessibility > Text to speech >
986    // Listen to an example
987    SYSTEM_A11Y_TTS_LISTEN_EXAMPLE = 0x17834000;
988
989    // TvSettings > System > Accessibility > Accessibility shortcut
990    SYSTEM_A11Y_SHORTCUT = 0x17840000;
991
992    // TvSettings > System > Accessibility > Accessibility shortcut >
993    // Enable (toggle)
994    SYSTEM_A11Y_SHORTCUT_ON_OFF = 0x17841000;
995
996    // TvSettings > System > Accessibility > Accessibility shortcut >
997    // Shortcut services
998    SYSTEM_A11Y_SHORTCUT_SERVICE = 0x17842000;
999
1000    // TvSettings > System > Accessibility > TalkBack
1001    SYSTEM_A11Y_TALKBACK = 0x17850000;
1002
1003    // TvSettings > System > Accessibility > TalkBack > Enable (toggle)
1004    SYSTEM_A11Y_TALKBACK_ON_OFF = 0x17851000;
1005
1006    // TvSettings > System > Accessibility > TalkBack > Configuration
1007    SYSTEM_A11Y_TALKBACK_CONFIG = 0x17852000;
1008
1009    // TvSettings > System > Accessibility > Accessibility Menu
1010    SYSTEM_A11Y_A11Y_MENU = 0x17860000;
1011
1012    // TvSettings > System > Accessibility > Accessibility Menu >
1013    // Enable (toggle)
1014    SYSTEM_A11Y_A11Y_MENU_ON_OFF = 0x17861000;
1015
1016    // TvSettings > System > Accessibility > Accessibility Menu > Configuration
1017    SYSTEM_A11Y_A11Y_MENU_CONFIG = 0x17862000;
1018
1019    // TvSettings > System > Accessibility > Select to Speak
1020    SYSTEM_A11Y_STS = 0x17870000;
1021
1022    // TvSettings > System > Accessibility > Select to Speak > Enable (toggle)
1023    SYSTEM_A11Y_STS_ON_OFF = 0x17871000;
1024
1025    // TvSettings > System > Accessibility > Select to Speak > Configuration
1026    SYSTEM_A11Y_STS_CONFIG = 0x17872000;
1027
1028    // TvSettings > System > Accessibility > Switch Access
1029    SYSTEM_A11Y_SWITCH_ACCESS = 0x17880000;
1030
1031    // TvSettings > System > Accessibility > Switch Access > Enable (Toggle)
1032    SYSTEM_A11Y_SWITCH_ACCESS_ON_OFF = 0x17881000;
1033
1034    // TvSettings > System > Accessibility > Switch Access > Configuration
1035    SYSTEM_A11Y_SWITCH_ACCESS_CONFIG = 0x17882000;
1036
1037    // TvSettings > System > Accessibility > Audio Description (Toggle)
1038    SYSTEM_A11Y_AUDIO_DESCRIPTION = 0x17890000;
1039
1040    // TvSettings > System > Accessibility > Bold Text (Toggle)
1041    SYSTEM_A11Y_BOLD_TEXT = 0x178A0000;
1042
1043    // TvSettings > System > Accessibility > Color Correction
1044    SYSTEM_A11Y_COLOR_CORRECTION = 0x178C0000;
1045
1046    // TvSettings > System > Accessibility > Color Correction > Enable (Toggle)
1047    SYSTEM_A11Y_COLOR_CORRECTION_ON_OFF = 0x178C1000;
1048
1049    // TvSettings > System > Accessibility > Color Correction > Deuteranomaly
1050    SYSTEM_A11Y_COLOR_CORRECTION_DEUTERANOMALY = 0x178C2000;
1051
1052    // TvSettings > System > Accessibility > Color Correction > Protanomaly
1053    SYSTEM_A11Y_COLOR_CORRECTION_PROTANOMALY = 0x178C3000;
1054
1055    // TvSettings > System > Accessibility > Color Correction > Tritanomaly
1056    SYSTEM_A11Y_COLOR_CORRECTION_TRITANOMALY = 0x178C4000;
1057
1058    // TvSettings > System > Accessibility > Color Correction > Grayscale
1059    SYSTEM_A11Y_COLOR_CORRECTION_GRAYSCALE = 0x178C5000;
1060
1061    // TvSettings > System > Reboot
1062    SYSTEM_REBOOT = 0x17900000;
1063
1064    // TvSettings > Device Preferences > Home screen (in classic TvSettings)
1065    PREFERENCES_HOME_SCREEN = 0x17A00000;
1066
1067    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1068    // Customize channels
1069    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS = 0x17A10000;
1070
1071    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1072    // Customize channels > Play Next
1073    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN = 0x17A11000;
1074
1075    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1076    // Customize channels > Play Next > On (toggle)
1077    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_ON_OFF = 0x17A11100;
1078
1079    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1080    // Customize channels > Play Next > Google Play Movies & TV (toggle)
1081    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_GPMT = 0x17A11200;
1082
1083    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1084    // Customize channels > Play Next > Google Play Music (toggle)
1085    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_GPM = 0x17A11300;
1086
1087    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1088    // Customize channels > Play Next > Promotional channels (toggle)
1089    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_PROMOTIONAL = 0x17A11400;
1090
1091    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1092    // Customize channels > Home screen channels
1093    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_HOME_SCREEN = 0x17A12000;
1094
1095    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1096    // Customize channels > Promotional channels
1097    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PROMOTIONAL = 0x17A13000;
1098
1099    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1100    // Enable video previews (toggle)
1101    PREFERENCES_HOME_SCREEN_VIDEO_PREVIEWS = 0x17A20000;
1102
1103    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1104    // Enable audio previews (toggle)
1105    PREFERENCES_HOME_SCREEN_AUDIO_PREVIEWS = 0x17A30000;
1106
1107    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1108    // Reorder apps
1109    PREFERENCES_HOME_SCREEN_REORDER_APPS = 0x17A40000;
1110
1111    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1112    // Reorder games
1113    PREFERENCES_HOME_SCREEN_REORDER_GAMES = 0x17A50000;
1114
1115    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1116    // Android TV Home open source licenses
1117    PREFERENCES_HOME_SCREEN_ATVH_OPEN_SOURCE = 0x17A60000;
1118
1119    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1120    // Android TV Core Services open source licenses
1121    PREFERENCES_HOME_SCREEN_ATVCS_OPEN_SOURCE = 0x17A70000;
1122
1123    // TvSettings > Device Preferences > Google Assistant
1124    PREFERENCES_ASSISTANT = 0x17B00000;
1125
1126    // TvSettings > Device Preferences > Google Assistant > Accounts
1127    PREFERENCES_ASSISTANT_ACCOUNTS = 0x17B10000;
1128
1129    // TvSettings > Device Preferences > Google Assistant > Accept permissions
1130    PREFERENCES_ASSISTANT_ACCEPT_PERMISSIONS = 0x17B20000;
1131
1132    // TvSettings > Device Preferences > Google Assistant > View permissions
1133    PREFERENCES_ASSISTANT_VIEW_PERMISSIONS = 0x17B30000;
1134
1135    // TvSettings > Device Preferences > Google Assistant > Searchable apps
1136    // (aliasing ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_SEARCHABLE_APPS)
1137    PREFERENCES_ASSISTANT_SEARCHABLE_APPS = 0x12133000;
1138
1139    // TvSettings > Device Preferences > Google Assistant > SafeSearch filter
1140    // (aliasing ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_SAFE_SEARCH)
1141    PREFERENCES_ASSISTANT_SAFESEARCH_FILTER = 0x12131000;
1142
1143    // TvSettings > Device Preferences > Google Assistant >
1144    // Block offensive words
1145    // (aliasing ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_BLOCK_OFFENSIVE)
1146    PREFERENCES_ASSISTANT_BLOCK_OFFENSIVE = 0x12132000;
1147
1148    // TvSettings > Device Preferences > Google Assistant > Open source licenses
1149    PREFERENCES_ASSISTANT_OPEN_SOURCE = 0x17B40000;
1150
1151    // TvSettings > Device Preferences > Chromecast Android Shell
1152    PREFERENCES_CHROMECAST_SHELL = 0x17C00000;
1153
1154    // TvSettings > Device Preferences > Chromecast Android Shell >
1155    // Open source licenses
1156    PREFERENCES_CHROMECAST_SHELL_OPEN_SOURCE = 0x17C10000;
1157
1158    // TvSettings > Device Preferences > Screen saver
1159    PREFERENCES_SCREENSAVER = 0x17D00000;
1160
1161    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser)
1162    PREFERENCES_SCREENSAVER_CHOOSER = 0x17D10000;
1163
1164    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser) >
1165    // Turn screen off
1166    PREFERENCES_SCREENSAVER_CHOOSER_SCREEN_OFF = 0x17D11000;
1167
1168    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser) >
1169    // Backdrop
1170    PREFERENCES_SCREENSAVER_CHOOSER_BACKDROP = 0x17D12000;
1171
1172    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser) >
1173    // Colors
1174    PREFERENCES_SCREENSAVER_CHOOSER_COLORS = 0x17D13000;
1175
1176    // TvSettings > Device Preferences > Screen saver > When to start
1177    PREFERENCES_SCREENSAVER_START_DELAY = 0x17D20000;
1178
1179    // TvSettings > Device Preferences > Screen saver > When to start >
1180    // 5 minutes
1181    PREFERENCES_SCREENSAVER_START_DELAY_5M = 0x17D21000;
1182
1183    // TvSettings > Device Preferences > Screen saver > When to start >
1184    // 15 minutes
1185    PREFERENCES_SCREENSAVER_START_DELAY_15M = 0x17D22000;
1186
1187    // TvSettings > Device Preferences > Screen saver > When to start >
1188    // 30 minutes
1189    PREFERENCES_SCREENSAVER_START_DELAY_30M = 0x17D23000;
1190
1191    // TvSettings > Device Preferences > Screen saver > When to start >
1192    // 1 hour
1193    PREFERENCES_SCREENSAVER_START_DELAY_1H = 0x17D24000;
1194
1195    // TvSettings > Device Preferences > Screen saver > When to start >
1196    // 2 hours
1197    PREFERENCES_SCREENSAVER_START_DELAY_2H = 0x17D25000;
1198
1199    // TvSettings > Device Preferences > Screen saver > Start now
1200    PREFERENCES_SCREENSAVER_START_NOW = 0x17D30000;
1201
1202    // TvSettings > Connected Devices (Slice)
1203    CONNECTED_SLICE = 0x18000000;
1204
1205    // TvSettings > Connected Devices (Slice) > Connect remote or headphones
1206    CONNECTED_SLICE_CONNECT_NEW_DEVICES = 0x18100000;
1207
1208    // TvSettings > Connected Devices (Slice) > [A connected device]
1209    CONNECTED_SLICE_DEVICE_ENTRY = 0x18200000;
1210
1211    // TvSettings > Connected Devices (Slice) > [A connected device] >
1212    // Remote update
1213    CONNECTED_SLICE_DEVICE_ENTRY_UPDATE = 0x18210000;
1214
1215    // TvSettings > Connected Devices (Slice) > [A connected device] > Rename
1216    CONNECTED_SLICE_DEVICE_ENTRY_RENAME = 0x18220000;
1217
1218    // TvSettings > Connected Devices (Slice) > [A connected device] > Forget
1219    CONNECTED_SLICE_DEVICE_ENTRY_FORGET = 0x18230000;
1220
1221    // TvSettings > Connected Devices (Slice) > HDMI-CEC
1222    CONNECTED_SLICE_HDMICEC = 0x18300000;
1223
1224    // TvSettings > Connected Devices (Slice) > HDMI-CEC > Enable (toggle)
1225    CONNECTED_SLICE_HDMICEC_ON_OFF = 0x18310000;
1226
1227    // TvSettings > Connected Devices (aliasing CONNECTED_SLICE)
1228    CONNECTED_CLASSIC = 0x18000000;
1229
1230    // TvSettings > Connected Devices > Connect remote
1231    // (aliasing CONNECTED_SLICE_CONNECT_NEW_DEVICES)
1232    CONNECTED_CLASSIC_CONNECT_REMOTE = 0x18100000;
1233
1234    // TvSettings > Connected Devices > [A connected device]
1235    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY)
1236    CONNECTED_CLASSIC_DEVICE_ENTRY = 0x18200000;
1237
1238    // TvSettings > Connected Devices > [A connected device] > Update
1239    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY_UPDATE)
1240    CONNECTED_CLASSIC_DEVICE_ENTRY_UPDATE = 0x18210000;
1241
1242    // TvSettings > Connected Devices > [A connected device] > Rename
1243    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY_RENAME)
1244    CONNECTED_CLASSIC_DEVICE_ENTRY_RENAME = 0x18220000;
1245
1246    // TvSettings > Connected Devices > [A connected device] > Forget
1247    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY_FORGET)
1248    CONNECTED_CLASSIC_DEVICE_ENTRY_FORGET = 0x18230000;
1249
1250    // TvSettings > Connected Devices > HDMI-CEC
1251    // (aliasing CONNECTED_SLICE_HDMICEC)
1252    CONNECTED_CLASSIC_HDMICEC = 0x18300000;
1253
1254    // TvSettings > Connected Devices > HDMI-CEC > Enable (toggle)
1255    // (aliasing CONNECTED_SLICE_HDMICEC_ON_OFF)
1256    CONNECTED_CLASSIC_HDMICEC_ON_OFF = 0x18310000;
1257
1258    // TvSettings > Help & Feedback
1259    FEEDBACK = 0x19000000;
1260
1261    // TvSettings > Help & Feedback > Send feedback
1262    FEEDBACK_SEND = 0x19100000;
1263}
1264