• 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 > Display & Sound
294    DISPLAY_SOUND = 0x15000000;
295
296    // TvSettings > Display & Sound > Advanced display settings
297    DISPLAY_SOUND_ADVANCED_DISPLAY = 0x15100000;
298
299    // TvSettings > Display & Sound > Advanced display settings >
300    // Allow game mode (toggle)
301    DISPLAY_SOUND_ADVANCED_DISPLAY_GAME_MODE = 0x15110000;
302
303    // TvSettings > Display & Sound > Advanced display settings >
304    // Format Selection
305    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION = 0x15120000;
306
307    // TvSettings > Display & Sound > Advanced display settings >
308    // Format Selection > Auto
309    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_AUTO = 0x15121000;
310
311    // TvSettings > Display & Sound > Advanced display settings >
312    // Format Selection > Manual
313    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_MANUAL = 0x15122000;
314
315    // TvSettings > Display & Sound > Advanced display settings >
316    // Format Selection > Dolby Vision
317    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_DOLBY_VISION = 0x15123000;
318
319    // TvSettings > Display & Sound > Advanced display settings >
320    // Format Selection > HDR 10
321    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_HDR10 = 0x15124000;
322
323    // TvSettings > Display & Sound > Advanced display settings >
324    // Format Selection > HLG
325    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_HLG = 0x15125000;
326
327    // TvSettings > Display & Sound > Advanced display settings >
328    // Format Selection > HDR10+
329    DISPLAY_SOUND_ADVANCED_DISPLAY_FORMAT_SELECTION_HDR10_PLUS = 0x15126000;
330
331    // TvSettings > Display & Sound > System sounds (toggle)
332    DISPLAY_SOUND_SYSTEM_SOUNDS = 0x15200000;
333
334    // TvSettings > Display & Sound > Advanced sound settings
335    DISPLAY_SOUND_ADVANCED_SOUNDS = 0x15300000;
336
337    // TvSettings > Display & Sound > Advanced sound settings > Select formats
338    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS = 0x15310000;
339
340    // TvSettings > Display & Sound > Advanced sound settings > Select formats >
341    // Auto...
342    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS_AUTO = 0x15311000;
343
344    // TvSettings > Display & Sound > Advanced sound settings > Select formats >
345    // None...
346    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS_NONE = 0x15312000;
347
348    // TvSettings > Display & Sound > Advanced sound settings > Select formats >
349    // Manual...
350    DISPLAY_SOUND_ADVANCED_SOUNDS_SELECT_FORMATS_MANUAL = 0x15313000;
351
352    // TvSettings > Display & Sound > Advanced sound settings >
353    // Dolby AC-4 (toggle)
354    DISPLAY_SOUND_ADVANCED_SOUNDS_DAC4 = 0x15320000;
355
356    // TvSettings > Display & Sound > Advanced sound settings >
357    // Dolby Atmos in Dolby Digital Plus (toggle)
358    DISPLAY_SOUND_ADVANCED_SOUNDS_DADDP = 0x15330000;
359
360    // TvSettings > Display & Sound > Advanced sound settings >
361    // Dolby Digital (toggle)
362    DISPLAY_SOUND_ADVANCED_SOUNDS_DD = 0x15340000;
363
364    // TvSettings > Display & Sound > Advanced sound settings >
365    // Dolby Digital Plus (toggle)
366    DISPLAY_SOUND_ADVANCED_SOUNDS_DDP = 0x15350000;
367
368    // TvSettings > Display & Sound > Advanced sound settings > DTS (toggle)
369    DISPLAY_SOUND_ADVANCED_SOUNDS_DTS = 0x15360000;
370
371    // TvSettings > Display & Sound > Advanced sound settings > DTS-UHD (toggle)
372    DISPLAY_SOUND_ADVANCED_SOUNDS_DTSUHD = 0x15361000;
373
374    // TvSettings > Display & Sound > Advanced sound settings > DRA (toggle)
375    DISPLAY_SOUND_ADVANCED_SOUNDS_DRA = 0x15362000;
376
377    // TvSettings > Display & Sound > Advanced sound settings > DTS-HD (toggle)
378    DISPLAY_SOUND_ADVANCED_SOUNDS_DTSHD = 0x15370000;
379
380    // TvSettings > Display & Sound > Advanced sound settings > AAC (toggle)
381    DISPLAY_SOUND_ADVANCED_SOUNDS_AAC = 0x15380000;
382
383    // TvSettings > Display & Sound > Advanced sound settings >
384    // Dolby TrueHD (toggle)
385    DISPLAY_SOUND_ADVANCED_SOUNDS_DTHD = 0x15390000;
386
387    // TvSettings > Display & Sound > Match content frame rate
388    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE = 0x15500000;
389
390    // TvSettings > Display & Sound > Match content frame rate >
391    // Seamless (toggle)
392    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE_SEAMLESS = 0x15510000;
393
394    // TvSettings > Display & Sound > Match content frame rate >
395    // Non-seamless (toggle)
396    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE_NON_SEAMLESS = 0x15520000;
397
398    // TvSettings > Display & Sound > Match content frame rate >
399    // Never (toggle)
400    DISPLAY_SOUND_MATCH_CONTENT_FRAMERATE_NEVER = 0x15530000;
401
402    // TvSettings > Display & Sound > Text scaling
403    DISPLAY_SOUND_TEXT_SCALING = 0x15600000;
404
405    // TvSettings > Display & Sound > Text scaling > Small (entry)
406    DISPLAY_SOUND_TEXT_SCALING_SMALL = 0x15610000;
407
408    // TvSettings > Display & Sound > Text scaling > Default (entry)
409    DISPLAY_SOUND_TEXT_SCALING_DEFAULT = 0x15620000;
410
411    // TvSettings > Display & Sound > Text scaling > Large (entry)
412    DISPLAY_SOUND_TEXT_SCALING_LARGE = 0x15630000;
413
414    // TvSettings > Display & Sound > Text scaling > Largest (entry)
415    DISPLAY_SOUND_TEXT_SCALING_LARGEST = 0x15640000;
416
417    // TvSettings > Apps
418    APPS = 0x16000000;
419
420    // TvSettings > Apps > See all apps
421    APPS_ALL_APPS = 0x16100000;
422
423    // TvSettings > Apps > See all apps > [An app entry]
424    APPS_ALL_APPS_APP_ENTRY = 0x16110000;
425
426    // TvSettings > Apps > See all apps > [An app entry] > Open
427    APPS_ALL_APPS_APP_ENTRY_OPEN = 0x16111000;
428
429    // TvSettings > Apps > See all apps > [An app entry] > Force stop
430    APPS_ALL_APPS_APP_ENTRY_FORCE_STOP = 0x16112000;
431
432    // TvSettings > Apps > See all apps > [An app entry] > Uninstall
433    APPS_ALL_APPS_APP_ENTRY_UNINSTALL = 0x16113000;
434
435    // TvSettings > Apps > See all apps > [An app entry] > Uninstall updates
436    APPS_ALL_APPS_APP_ENTRY_UNINSTALL_UPDATES = 0x16114000;
437
438    // TvSettings > Apps > See all apps > [An app entry] > Disable
439    APPS_ALL_APPS_APP_ENTRY_DISABLE = 0x16115000;
440
441    // TvSettings > Apps > See all apps > [An app entry] > Clear data
442    APPS_ALL_APPS_APP_ENTRY_CLEAR_DATA = 0x16116000;
443
444    // TvSettings > Apps > See all apps > [An app entry] > Clear cache
445    APPS_ALL_APPS_APP_ENTRY_CLEAR_CACHE = 0x16117000;
446
447    // TvSettings > Apps > See all apps > [An app entry] > Clear defaults
448    APPS_ALL_APPS_APP_ENTRY_CLEAR_DEFAULTS = 0x16118000;
449
450    // TvSettings > Apps > See all apps > [An app entry] >
451    // Notifications (toggle)
452    APPS_ALL_APPS_APP_ENTRY_NOTIFICATIONS = 0x16119000;
453
454    // TvSettings > Apps > See all apps > [An app entry] > Permissions
455    APPS_ALL_APPS_APP_ENTRY_PERMISSIONS = 0x1611A000;
456
457    // TvSettings > Apps > See all apps > [An app entry] > Enable
458    APPS_ALL_APPS_APP_ENTRY_ENABLE = 0x1611B000;
459
460    // TvSettings > Apps > See all apps > [An app entry] > Open source licenses
461    APPS_ALL_APPS_APP_ENTRY_LICENSES = 0x1611C000;
462
463    // TvSettings > Apps > See all apps > [An app entry] > Remove permissions Toggle
464    APPS_ALL_APPS_APP_ENTRY_HIBERNATION = 0x1611D000;
465
466    // TvSettings > Apps > See all apps > Show system apps
467    APPS_ALL_APPS_SHOW_SYSTEM_APPS = 0x16120000;
468
469    // TvSettings > Apps > App permissions
470    APPS_APP_PERMISSIONS = 0x16200000;
471
472    // TvSettings > Apps > App permission > Body sensors
473    APPS_APP_PERMISSIONS_BODY_SENSORS = 0x16210000;
474
475    // TvSettings > Apps > App permission > Calendar
476    APPS_APP_PERMISSIONS_CALENDAR = 0x16220000;
477
478    // TvSettings > Apps > App permission > Call logs
479    APPS_APP_PERMISSIONS_CALL_LOGS = 0x16230000;
480
481    // TvSettings > Apps > App permission > Camera
482    APPS_APP_PERMISSIONS_CAMERA = 0x16240000;
483
484    // TvSettings > Apps > App permission > Contacts
485    APPS_APP_PERMISSIONS_CONTACTS = 0x16250000;
486
487    // TvSettings > Apps > App permission > Location
488    APPS_APP_PERMISSIONS_LOCATION = 0x16260000;
489
490    // TvSettings > Apps > App permission > Microphone
491    APPS_APP_PERMISSIONS_MICROPHONE = 0x16270000;
492
493    // TvSettings > Apps > App permission > Phone
494    APPS_APP_PERMISSIONS_PHONE = 0x16280000;
495
496    // TvSettings > Apps > App permission > Physical activity
497    APPS_APP_PERMISSIONS_PHYSICAL_ACTIVITY = 0x16290000;
498
499    // TvSettings > Apps > App permission > SMS
500    APPS_APP_PERMISSIONS_SMS = 0x162A0000;
501
502    // TvSettings > Apps > App permission > Storage
503    APPS_APP_PERMISSIONS_STORAGE = 0x162B0000;
504
505    // TvSettings > Apps > App permission > Additional permissions
506    APPS_APP_PERMISSIONS_ADDITIONAL = 0x162C0000;
507
508    // TvSettings > Apps > App permission > Additional permissions >
509    // real all TV listings
510    APPS_APP_PERMISSIONS_ADDITIONAL_READ_TV_LISTINGS = 0x162C1000;
511
512    // TvSettings > Apps > App permission > Additional permissions >
513    // real instant messages
514    APPS_APP_PERMISSIONS_ADDITIONAL_READ_INSTANT_MESSAGES = 0x162C2000;
515
516    // TvSettings > Apps > App permission > Additional permissions >
517    // write instant messages
518    APPS_APP_PERMISSIONS_ADDITIONAL_WRITE_INSTANT_MESSAGES = 0x162C3000;
519
520    // TvSettings > Apps > Special app access
521    APPS_SPECIAL_APP_ACCESS = 0x16300000;
522
523    // TvSettings > Apps > Special app access > Energy optimization
524    APPS_SPECIAL_APP_ACCESS_ENERGY_OPTIMIZATION = 0x16310000;
525
526    // TvSettings > Apps > Special app access > Usage access
527    APPS_SPECIAL_APP_ACCESS_USAGE_ACCESS = 0x16320000;
528
529    // TvSettings > Apps > Special app access > Notification access
530    APPS_SPECIAL_APP_ACCESS_NOTIFICATION_ACCESS = 0x16330000;
531
532    // TvSettings > Apps > Special app access > Display over other apps
533    APPS_SPECIAL_APP_ACCESS_DISPLAY_OVER_OTHERS = 0x16340000;
534
535    // TvSettings > Apps > Special app access > Modify system settings
536    APPS_SPECIAL_APP_ACCESS_MODIFY_SYSTEM_SETTINGS = 0x16350000;
537
538    // TvSettings > Apps > Special app access > Picture-in-picture
539    APPS_SPECIAL_APP_ACCESS_PICTURE_IN_PICTURE = 0x16360000;
540
541    // TvSettings > Apps > Special app access > Alarms & Reminders
542    APPS_SPECIAL_APP_ACCESS_ALARMS_AND_REMINDERS = 0x16370000;
543
544    // TvSettings > Apps > Special app access > All files access
545    APPS_SPECIAL_APP_ACCESS_ALL_FILES_ACCESS = 0x16380000;
546
547    // TvSettings > Apps > Special app access > Turn screen on
548    APPS_SPECIAL_APP_ACCESS_TURN_SCREEN_ON = 0x16390000;
549
550    // TvSettings > Apps > Security & restrictions
551    APPS_SECURITY_RESTRICTIONS = 0x16400000;
552
553    // TvSettings > Apps > Security & restrictions > Unknown sources
554    APPS_SECURITY_RESTRICTIONS_UNKNOWN_SOURCES = 0x16410000;
555
556    // TvSettings > Apps > Security & restrictions > Verify apps (toggle)
557    APPS_SECURITY_RESTRICTIONS_VERIFY_APPS = 0x16420000;
558
559    // TvSettings > Apps > Security & restrictions > Create restricted profile
560    APPS_SECURITY_RESTRICTIONS_CREATE_PROFILE = 0x16430000;
561
562    // TvSettings > Apps > Security & restrictions > Enter restricted profile
563    APPS_SECURITY_RESTRICTIONS_ENTER_PROFILE = 0x16440000;
564
565    // TvSettings > Apps > Security & restrictions >
566    // Allowed apps (Restricted Profile)
567    APPS_SECURITY_RESTRICTIONS_PROFILE_ALLOWED_APPS = 0x16450000;
568
569    // TvSettings > Apps > Security & restrictions >
570    // Change pin (Restricted Profile)
571    APPS_SECURITY_RESTRICTIONS_PROFILE_CHANGE_PIN = 0x16460000;
572
573    // TvSettings > Apps > Security & restrictions >
574    // Delete restricted profile
575    APPS_SECURITY_RESTRICTIONS_DELETE_PROFILE = 0x16470000;
576
577    // TvSettings > Apps > Security & restrictions >
578    // Exit restricted profile
579    APPS_SECURITY_RESTRICTIONS_EXIT_PROFILE = 0x16480000;
580
581    // TvSettings > Unused apps
582    APPS_UNUSED_APPS = 0x16500000;
583
584    // TvSettings > System (same as TvSettings > Device Preferences)
585    SYSTEM = 0x17000000;
586
587    // TvSettings > System > About
588    SYSTEM_ABOUT = 0x17100000;
589
590    // TvSettings > System > System update
591    SYSTEM_ABOUT_SYSTEM_UPDATE = 0x17110000;
592
593    // TvSettings > System > Device name
594    SYSTEM_ABOUT_DEVICE_NAME = 0x17120000;
595
596    // TvSettings > System > Factory reset
597    SYSTEM_ABOUT_FACTORY_RESET = 0x17130000;
598
599    // TvSettings > System > Status
600    SYSTEM_ABOUT_STATUS = 0x17140000;
601
602    // TvSettings > System > Legal information
603    SYSTEM_ABOUT_LEGAL_INFO = 0x17150000;
604
605    // TvSettings > System > Legal information > Open source licenses
606    SYSTEM_ABOUT_LEGAL_INFO_OPEN_SOURCE = 0x17151000;
607
608    // TvSettings > System > Legal information > Google legal
609    SYSTEM_ABOUT_LEGAL_INFO_GOOGLE_LEGAL = 0x17152000;
610
611    // TvSettings > System > Legal information > System WebView licenses
612    SYSTEM_ABOUT_LEGAL_INFO_SYSTEM_WEBVIEW = 0x17153000;
613
614    // TvSettings > System > Build
615    SYSTEM_ABOUT_BUILD = 0x17160000;
616
617    // TvSettings > System > Date & time
618    SYSTEM_DATE_TIME = 0x17200000;
619
620    // TvSettings > System > Date & time > Automatic data & time
621    SYSTEM_DATE_TIME_AUTOMATIC = 0x17210000;
622
623    // TvSettings > System > Date & time > Automatic data & time >
624    // Use network-provided time
625    SYSTEM_DATE_TIME_AUTOMATIC_USE_NETWORK_TIME = 0x17211000;
626
627    // TvSettings > System > Date & time > Automatic data & time > Off
628    SYSTEM_DATE_TIME_AUTOMATIC_OFF = 0x17212000;
629
630    // TvSettings > System > Date & time > Set date
631    SYSTEM_DATE_TIME_SET_DATE = 0x17220000;
632
633    // TvSettings > System > Date & time > Set time
634    SYSTEM_DATE_TIME_SET_TIME = 0x17230000;
635
636    // TvSettings > System > Date & time > Set time zone
637    SYSTEM_DATE_TIME_SET_TIME_ZONE = 0x17240000;
638
639    // TvSettings > System > Date & time > Set time zone > [A time zone button]
640    SYSTEM_DATE_TIME_SET_TIME_ZONE_BUTTON = 0x17241000;
641
642    // TvSettings > System > Date & time > Use 24-hour format (toggle)
643    SYSTEM_DATE_TIME_USE_24_HOUR_FORMAT = 0x17250000;
644
645    // TvSettings > System > Language
646    SYSTEM_LANGUAGE = 0x17300000;
647
648    // TvSettings > System > Language > [A language button]
649    SYSTEM_LANGUAGE_BUTTON = 0x17310000;
650
651    // TvSettings > System > Keyboard
652    SYSTEM_KEYBOARD = 0x17400000;
653
654    // TvSettings > System > Keyboard > Current keyboard
655    SYSTEM_KEYBOARD_CURRENT_KEYBOARD = 0x17410000;
656
657    // TvSettings > System > Keyboard > Gboard Settings
658    SYSTEM_KEYBOARD_GBOARD_SETTINGS = 0x17420000;
659
660    // TvSettings > System > Keyboard > Gboard Settings > Languages
661    SYSTEM_KEYBOARD_GBOARD_SETTINGS_LANGUAGES = 0x17421000;
662
663    // TvSettings > System > Keyboard > Gboard Settings > Terms of services
664    SYSTEM_KEYBOARD_GBOARD_SETTINGS_TOS = 0x17422000;
665
666    // TvSettings > System > Keyboard > Gboard Settings > Privacy policy
667    SYSTEM_KEYBOARD_GBOARD_SETTINGS_PRIVACY_POLICY = 0x17423000;
668
669    // TvSettings > System > Keyboard > Gboard Settings > Open source licenses
670    SYSTEM_KEYBOARD_GBOARD_SETTINGS_OPEN_SOURCE = 0x17424000;
671
672    // TvSettings > System > Keyboard > Gboard Settings >
673    // Share usage statistics (toggle)
674    SYSTEM_KEYBOARD_GBOARD_SETTINGS_SHARE_USAGE_STATS = 0x17425000;
675
676    // TvSettings > System > Keyboard > Manage keyboards
677    SYSTEM_KEYBOARD_MANAGE_KEYBOARDS = 0x17430000;
678
679    // TvSettings > System > Storage
680    SYSTEM_STORAGE = 0x17500000;
681
682    // TvSettings > System > Internal shared storage
683    SYSTEM_STORAGE_INTERNAL_STORAGE = 0x17510000;
684
685    // TvSettings > System > Internal shared storage > Apps
686    SYSTEM_STORAGE_INTERNAL_STORAGE_APPS = 0x17511000;
687
688    // TvSettings > System > Internal shared storage >
689    // Cached data (brings up "Clear cached data?" dialog upon click)
690    SYSTEM_STORAGE_INTERNAL_STORAGE_CACHED = 0x17512000;
691
692    // TvSettings > System > Free up storage
693    SYSTEM_STORAGE_FREE_UP_STORAGE = 0x17520000;
694
695    // TvSettings > System > Free up storage >
696    // Clear cached data (brings up "Clear cached data?" dialog upon click)
697    SYSTEM_STORAGE_FREE_UP_STORAGE_CLEAR_CACHED_DATA = 0x17521000;
698
699    // TvSettings > System > Free up storage > Uninstall apps
700    SYSTEM_STORAGE_FREE_UP_STORAGE_UNINSTALL_APPS = 0x17522000;
701
702    // TvSettings > System > Ambient mode
703    SYSTEM_AMBIENT = 0x17600000;
704
705    // TvSettings > System > Ambient mode > Start now
706    SYSTEM_AMBIENT_START = 0x17610000;
707
708    // TvSettings > System > Ambient mode > Settings
709    SYSTEM_AMBIENT_SETTINGS = 0x17620000;
710
711    // TvSettings > System > Ambient mode > Settings > Google Photos (Channels)
712    SYSTEM_AMBIENT_SETTINGS_CHANNEL_GP = 0x17621000;
713
714    // TvSettings > System > Ambient mode > Settings > Art gallery (Channels)
715    SYSTEM_AMBIENT_SETTINGS_CHANNEL_AG = 0x17622000;
716
717    // TvSettings > System > Ambient mode > Settings >
718    // Cinematic videos (Channels)
719    SYSTEM_AMBIENT_SETTINGS_CHANNEL_CV = 0x17623000;
720
721    // TvSettings > System > Ambient mode > Settings > Experimental (Channels)
722    SYSTEM_AMBIENT_SETTINGS_CHANNEL_EXP = 0x17624000;
723
724    // TvSettings > System > Ambient mode > Settings > Weather
725    SYSTEM_AMBIENT_SETTINGS_WEATHER = 0x17625000;
726
727    // TvSettings > System > Ambient mode > Settings > Weather > Hide
728    SYSTEM_AMBIENT_SETTINGS_WEATHER_HIDE = 0x17625100;
729
730    // TvSettings > System > Ambient mode > Settings > Weather > Celsius (Unit)
731    SYSTEM_AMBIENT_SETTINGS_WEATHER_UNIT_C = 0x17625200;
732
733    // TvSettings > System > Ambient mode > Settings > Weather >
734    // Fahrenheit (Unit)
735    SYSTEM_AMBIENT_SETTINGS_WEATHER_UNIT_F = 0x17625300;
736
737    // TvSettings > System > Ambient mode > Settings > Weather > Both (Unit)
738    SYSTEM_AMBIENT_SETTINGS_WEATHER_UNIT_BOTH = 0x17625400;
739
740    // TvSettings > System > Ambient mode > Settings > Time
741    SYSTEM_AMBIENT_SETTINGS_TIME = 0x17626000;
742
743    // TvSettings > System > Ambient mode > Settings > Time > Hide
744    SYSTEM_AMBIENT_SETTINGS_TIME_HIDE = 0x17626100;
745
746    // TvSettings > System > Ambient mode > Settings > Time > Show
747    SYSTEM_AMBIENT_SETTINGS_TIME_SHOW = 0x17626200;
748
749    // TvSettings > System > Ambient mode > Settings > Device information
750    SYSTEM_AMBIENT_SETTINGS_DEVICE_INFO = 0x17627000;
751
752    // TvSettings > System > Ambient mode > Settings > Device information > Hide
753    SYSTEM_AMBIENT_SETTINGS_DEVICE_INFO_HIDE = 0x17627100;
754
755    // TvSettings > System > Ambient mode > Settings > Device information > Show
756    SYSTEM_AMBIENT_SETTINGS_DEVICE_INFO_SHOW = 0x17627200;
757
758    // TvSettings > System > Ambient mode > Settings > Personal photo data
759    SYSTEM_AMBIENT_SETTINGS_PPD = 0x17628000;
760
761    // TvSettings > System > Ambient mode > Settings > Personal photo data >
762    // Hide
763    SYSTEM_AMBIENT_SETTINGS_PPD_HIDE = 0x17628100;
764
765    // TvSettings > System > Ambient mode > Settings > Personal photo data >
766    // Show
767    SYSTEM_AMBIENT_SETTINGS_PPD_SHOW = 0x17628200;
768
769    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos
770    SYSTEM_AMBIENT_SETTINGS_PGP = 0x17629000;
771
772    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos >
773    // Hide
774    SYSTEM_AMBIENT_SETTINGS_PGP_HIDE = 0x17629100;
775
776    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos >
777    // Show
778    SYSTEM_AMBIENT_SETTINGS_PGP_SHOW = 0x17629200;
779
780    // TvSettings > System > Ambient mode > Settings > Portrait Google Photos >
781    // Show pairs
782    SYSTEM_AMBIENT_SETTINGS_PGP_SHOW_PAIRS = 0x17629300;
783
784    // TvSettings > System > Ambient mode > Settings > Personal photo curation
785    SYSTEM_AMBIENT_SETTINGS_PPC = 0x1762A000;
786
787    // TvSettings > System > Ambient mode > Settings > Personal photo curation >
788    // All albums
789    SYSTEM_AMBIENT_SETTINGS_PPC_ALL_ALBUMS = 0x1762A100;
790
791    // TvSettings > System > Ambient mode > Settings > Personal photo curation >
792    // Live albums only
793    SYSTEM_AMBIENT_SETTINGS_PPC_LIVE_ALBUMS = 0x1762A200;
794
795    // TvSettings > System > Ambient mode > Settings > Slideshow speed
796    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED = 0x1762B000;
797
798    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 5s
799    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_5S = 0x1762B100;
800
801    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 10s
802    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_10S = 0x1762B200;
803
804    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 30s
805    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_30S = 0x1762B300;
806
807    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 1m
808    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_1M = 0x1762B400;
809
810    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 3m
811    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_3M = 0x1762B500;
812
813    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 5m
814    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_5M = 0x1762B600;
815
816    // TvSettings > System > Ambient mode > Settings > Slideshow speed > 10m
817    SYSTEM_AMBIENT_SETTINGS_SLIDE_SPEED_10M = 0x1762B700;
818
819    // TvSettings > System > Energy saver
820    SYSTEM_ENERGYSAVER = 0x17700000;
821
822    // TvSettings > System > Energy saver > Turn off display after
823    SYSTEM_ENERGYSAVER_START_DELAY = 0x17710000;
824
825    // TvSettings > System > Energy saver > Turn off display after > 15 minutes
826    SYSTEM_ENERGYSAVER_START_DELAY_15M = 0x17711000;
827
828    // TvSettings > System > Energy saver > Turn off display after > 30 minutes
829    SYSTEM_ENERGYSAVER_START_DELAY_30M = 0x17712000;
830
831    // TvSettings > System > Energy saver > Turn off display after > 1 hour
832    SYSTEM_ENERGYSAVER_START_DELAY_1H = 0x17713000;
833
834    // TvSettings > System > Energy saver > Turn off display after > 3 hours
835    SYSTEM_ENERGYSAVER_START_DELAY_3H = 0x17714000;
836
837    // TvSettings > System > Energy saver > Turn off display after > 6 hours
838    SYSTEM_ENERGYSAVER_START_DELAY_6H = 0x17715000;
839
840    // TvSettings > System > Energy saver > Turn off display after > 12 hours
841    SYSTEM_ENERGYSAVER_START_DELAY_12H = 0x17716000;
842
843    // TvSettings > System > Energy saver > Turn off display after > Never
844    SYSTEM_ENERGYSAVER_START_DELAY_NEVER = 0x17717000;
845
846    // TvSettings > System > Power & Energy
847    SYSTEM_POWER_AND_ENERGY = 0x17E00000;
848
849    // TvSettings > System > Power & Energy > Eco settings
850    SYSTEM_POWER_AND_ENERGY_ECO_SETTINGS = 0x17E10000;
851
852    // TvSettings > System > Accessibility
853    SYSTEM_A11Y = 0x17800000;
854
855    // TvSettings > System > Accessibility > Captions
856    SYSTEM_A11Y_CAPTIONS = 0x17810000;
857
858    // TvSettings > System > Accessibility > Captions > Display (toggle)
859    SYSTEM_A11Y_CAPTIONS_DISPLAY_ON_OFF = 0x17811000;
860
861    // TvSettings > System > Accessibility > Captions > Language
862    SYSTEM_A11Y_CAPTIONS_LANGUAGE = 0x17812000;
863
864    // TvSettings > System > Accessibility > Captions > Language > [A language]
865    SYSTEM_A11Y_CAPTIONS_LANGUAGE_BUTTON = 0x17812100;
866
867    // TvSettings > System > Accessibility > Captions > Text size
868    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE = 0x17813000;
869
870    // TvSettings > System > Accessibility > Captions > Text size > Very small
871    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_VERY_SMALL = 0x17813100;
872
873    // TvSettings > System > Accessibility > Captions > Text size > Small
874    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_SMALL = 0x17813200;
875
876    // TvSettings > System > Accessibility > Captions > Text size > Normal
877    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_NORMAL = 0x17813300;
878
879    // TvSettings > System > Accessibility > Captions > Text size > Large
880    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_LARGE = 0x17813400;
881
882    // TvSettings > System > Accessibility > Captions > Text size > Very large
883    SYSTEM_A11Y_CAPTIONS_TEXT_SIZE_VERY_LARGE = 0x17813500;
884
885    // TvSettings > System > Accessibility > Captions >
886    // White on black (radio button)
887    SYSTEM_A11Y_CAPTIONS_WHITE_ON_BLACK = 0x17814000;
888
889    // TvSettings > System > Accessibility > Captions >
890    // Black on white (radio button)
891    SYSTEM_A11Y_CAPTIONS_BLACK_ON_WHITE = 0x17815000;
892
893    // TvSettings > System > Accessibility > Captions >
894    // Yellow on black (radio button)
895    SYSTEM_A11Y_CAPTIONS_YELLOW_ON_BLACK = 0x17816000;
896
897    // TvSettings > System > Accessibility > Captions >
898    // Yellow on blue (radio button)
899    SYSTEM_A11Y_CAPTIONS_YELLOW_ON_BLUE = 0x17817000;
900
901    // TvSettings > System > Accessibility > Captions > Custom
902    SYSTEM_A11Y_CAPTIONS_CUSTOM = 0x17818000;
903
904    // TvSettings > System > Accessibility > Captions > Custom > Font family
905    SYSTEM_A11Y_CAPTIONS_CUSTOM_FONT = 0x17818100;
906
907    // TvSettings > System > Accessibility > Captions > Custom > Text color
908    SYSTEM_A11Y_CAPTIONS_CUSTOM_TEXT_COLOR = 0x17818200;
909
910    // TvSettings > System > Accessibility > Captions > Custom > Text opacity
911    SYSTEM_A11Y_CAPTIONS_CUSTOM_TEXT_OPACITY = 0x17818300;
912
913    // TvSettings > System > Accessibility > Captions > Custom > Edge type
914    SYSTEM_A11Y_CAPTIONS_CUSTOM_EDGE_TYPE = 0x17818400;
915
916    // TvSettings > System > Accessibility > Captions > Custom > Edge color
917    SYSTEM_A11Y_CAPTIONS_CUSTOM_EDGE_COLOR = 0x17818500;
918
919    // TvSettings > System > Accessibility > Captions > Custom >
920    // Show background (toggle)
921    SYSTEM_A11Y_CAPTIONS_SHOW_BACKGROUND = 0x17818600;
922
923    // TvSettings > System > Accessibility > Captions > Custom >
924    // Background color
925    SYSTEM_A11Y_CAPTIONS_BACKGROUND_COLOR = 0x17818700;
926
927    // TvSettings > System > Accessibility > Captions > Custom >
928    // Background opacity
929    SYSTEM_A11Y_CAPTIONS_BACKGROUND_OPACITY = 0x17818800;
930
931    // TvSettings > System > Accessibility > Captions > Custom >
932    // Show window (toggle)
933    SYSTEM_A11Y_CAPTIONS_SHOW_WINDOW = 0x17818900;
934
935    // TvSettings > System > Accessibility > Captions > Custom > Window color
936    SYSTEM_A11Y_CAPTIONS_WINDOW_COLOR = 0x17818A00;
937
938    // TvSettings > System > Accessibility > Captions > Custom > Window opacity
939    SYSTEM_A11Y_CAPTIONS_WINDOW_OPACITY = 0x17818B00;
940
941    // TvSettings > System > Accessibility > High contrast text (toggle)
942    SYSTEM_A11Y_HIGH_CONTRAST_TEXT = 0x17820000;
943
944    // TvSettings > System > Accessibility > Text to speech
945    SYSTEM_A11Y_TTS = 0x17830000;
946
947    // TvSettings > System > Accessibility > Text to speech > [Select an engine]
948    SYSTEM_A11Y_TTS_ENGINE_SELECT = 0x17831000;
949
950    // TvSettings > System > Accessibility > Text to speech >
951    // Engine configuration
952    SYSTEM_A11Y_TTS_ENGINE_CONFIG = 0x17832000;
953
954    // TvSettings > System > Accessibility > Text to speech >
955    // Engine configuration > Language
956    SYSTEM_A11Y_TTS_ENGINE_CONFIG_LANGUAGE = 0x17832100;
957
958    // TvSettings > System > Accessibility > Text to speech >
959    // Engine configuration > Language > Button
960    SYSTEM_A11Y_TTS_ENGINE_CONFIG_LANGUAGE_CHOOSE_LANGUAGE = 0x17832110;
961
962    // TvSettings > System > Accessibility > Text to speech >
963    // Engine configuration > Settings for Google Text-to-speech Engine
964    SYSTEM_A11Y_TTS_ENGINE_CONFIG_SETTINGS_GTTS_ENGINE = 0x17832200;
965
966    // TvSettings > System > Accessibility > Text to speech >
967    // Engine configuration > Install voice data
968    SYSTEM_A11Y_TTS_ENGINE_CONFIG_INSTALL_VOICE_DATA = 0x17832300;
969
970    // TvSettings > System > Accessibility > Text to speech > Speech rate
971    SYSTEM_A11Y_TTS_SPEECH_RATE = 0x17833000;
972
973    // TvSettings > System > Accessibility > Text to speech >
974    // Listen to an example
975    SYSTEM_A11Y_TTS_LISTEN_EXAMPLE = 0x17834000;
976
977    // TvSettings > System > Accessibility > Accessibility shortcut
978    SYSTEM_A11Y_SHORTCUT = 0x17840000;
979
980    // TvSettings > System > Accessibility > Accessibility shortcut >
981    // Enable (toggle)
982    SYSTEM_A11Y_SHORTCUT_ON_OFF = 0x17841000;
983
984    // TvSettings > System > Accessibility > Accessibility shortcut >
985    // Shortcut services
986    SYSTEM_A11Y_SHORTCUT_SERVICE = 0x17842000;
987
988    // TvSettings > System > Accessibility > TalkBack
989    SYSTEM_A11Y_TALKBACK = 0x17850000;
990
991    // TvSettings > System > Accessibility > TalkBack > Enable (toggle)
992    SYSTEM_A11Y_TALKBACK_ON_OFF = 0x17851000;
993
994    // TvSettings > System > Accessibility > TalkBack > Configuration
995    SYSTEM_A11Y_TALKBACK_CONFIG = 0x17852000;
996
997    // TvSettings > System > Accessibility > Accessibility Menu
998    SYSTEM_A11Y_A11Y_MENU = 0x17860000;
999
1000    // TvSettings > System > Accessibility > Accessibility Menu >
1001    // Enable (toggle)
1002    SYSTEM_A11Y_A11Y_MENU_ON_OFF = 0x17861000;
1003
1004    // TvSettings > System > Accessibility > Accessibility Menu > Configuration
1005    SYSTEM_A11Y_A11Y_MENU_CONFIG = 0x17862000;
1006
1007    // TvSettings > System > Accessibility > Select to Speak
1008    SYSTEM_A11Y_STS = 0x17870000;
1009
1010    // TvSettings > System > Accessibility > Select to Speak > Enable (toggle)
1011    SYSTEM_A11Y_STS_ON_OFF = 0x17871000;
1012
1013    // TvSettings > System > Accessibility > Select to Speak > Configuration
1014    SYSTEM_A11Y_STS_CONFIG = 0x17872000;
1015
1016    // TvSettings > System > Accessibility > Switch Access
1017    SYSTEM_A11Y_SWITCH_ACCESS = 0x17880000;
1018
1019    // TvSettings > System > Accessibility > Switch Access > Enable (Toggle)
1020    SYSTEM_A11Y_SWITCH_ACCESS_ON_OFF = 0x17881000;
1021
1022    // TvSettings > System > Accessibility > Switch Access > Configuration
1023    SYSTEM_A11Y_SWITCH_ACCESS_CONFIG = 0x17882000;
1024
1025    // TvSettings > System > Accessibility > Audio Description (Toggle)
1026    SYSTEM_A11Y_AUDIO_DESCRIPTION = 0x17890000;
1027
1028    // TvSettings > System > Reboot
1029    SYSTEM_REBOOT = 0x17900000;
1030
1031    // TvSettings > Device Preferences > Home screen (in classic TvSettings)
1032    PREFERENCES_HOME_SCREEN = 0x17A00000;
1033
1034    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1035    // Customize channels
1036    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS = 0x17A10000;
1037
1038    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1039    // Customize channels > Play Next
1040    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN = 0x17A11000;
1041
1042    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1043    // Customize channels > Play Next > On (toggle)
1044    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_ON_OFF = 0x17A11100;
1045
1046    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1047    // Customize channels > Play Next > Google Play Movies & TV (toggle)
1048    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_GPMT = 0x17A11200;
1049
1050    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1051    // Customize channels > Play Next > Google Play Music (toggle)
1052    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_GPM = 0x17A11300;
1053
1054    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1055    // Customize channels > Play Next > Promotional channels (toggle)
1056    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PN_PROMOTIONAL = 0x17A11400;
1057
1058    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1059    // Customize channels > Home screen channels
1060    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_HOME_SCREEN = 0x17A12000;
1061
1062    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1063    // Customize channels > Promotional channels
1064    PREFERENCES_HOME_SCREEN_CUSTOMIZE_CHANNELS_PROMOTIONAL = 0x17A13000;
1065
1066    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1067    // Enable video previews (toggle)
1068    PREFERENCES_HOME_SCREEN_VIDEO_PREVIEWS = 0x17A20000;
1069
1070    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1071    // Enable audio previews (toggle)
1072    PREFERENCES_HOME_SCREEN_AUDIO_PREVIEWS = 0x17A30000;
1073
1074    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1075    // Reorder apps
1076    PREFERENCES_HOME_SCREEN_REORDER_APPS = 0x17A40000;
1077
1078    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1079    // Reorder games
1080    PREFERENCES_HOME_SCREEN_REORDER_GAMES = 0x17A50000;
1081
1082    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1083    // Android TV Home open source licenses
1084    PREFERENCES_HOME_SCREEN_ATVH_OPEN_SOURCE = 0x17A60000;
1085
1086    // TvSettings > Device Preferences > Home screen (in classic TvSettings) >
1087    // Android TV Core Services open source licenses
1088    PREFERENCES_HOME_SCREEN_ATVCS_OPEN_SOURCE = 0x17A70000;
1089
1090    // TvSettings > Device Preferences > Google Assistant
1091    PREFERENCES_ASSISTANT = 0x17B00000;
1092
1093    // TvSettings > Device Preferences > Google Assistant > Accounts
1094    PREFERENCES_ASSISTANT_ACCOUNTS = 0x17B10000;
1095
1096    // TvSettings > Device Preferences > Google Assistant > Accept permissions
1097    PREFERENCES_ASSISTANT_ACCEPT_PERMISSIONS = 0x17B20000;
1098
1099    // TvSettings > Device Preferences > Google Assistant > View permissions
1100    PREFERENCES_ASSISTANT_VIEW_PERMISSIONS = 0x17B30000;
1101
1102    // TvSettings > Device Preferences > Google Assistant > Searchable apps
1103    // (aliasing ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_SEARCHABLE_APPS)
1104    PREFERENCES_ASSISTANT_SEARCHABLE_APPS = 0x12133000;
1105
1106    // TvSettings > Device Preferences > Google Assistant > SafeSearch filter
1107    // (aliasing ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_SAFE_SEARCH)
1108    PREFERENCES_ASSISTANT_SAFESEARCH_FILTER = 0x12131000;
1109
1110    // TvSettings > Device Preferences > Google Assistant >
1111    // Block offensive words
1112    // (aliasing ACCOUNT_SLICE_REG_ACCOUNT_ASSISTANT_BLOCK_OFFENSIVE)
1113    PREFERENCES_ASSISTANT_BLOCK_OFFENSIVE = 0x12132000;
1114
1115    // TvSettings > Device Preferences > Google Assistant > Open source licenses
1116    PREFERENCES_ASSISTANT_OPEN_SOURCE = 0x17B40000;
1117
1118    // TvSettings > Device Preferences > Chromecast Android Shell
1119    PREFERENCES_CHROMECAST_SHELL = 0x17C00000;
1120
1121    // TvSettings > Device Preferences > Chromecast Android Shell >
1122    // Open source licenses
1123    PREFERENCES_CHROMECAST_SHELL_OPEN_SOURCE = 0x17C10000;
1124
1125    // TvSettings > Device Preferences > Screen saver
1126    PREFERENCES_SCREENSAVER = 0x17D00000;
1127
1128    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser)
1129    PREFERENCES_SCREENSAVER_CHOOSER = 0x17D10000;
1130
1131    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser) >
1132    // Turn screen off
1133    PREFERENCES_SCREENSAVER_CHOOSER_SCREEN_OFF = 0x17D11000;
1134
1135    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser) >
1136    // Backdrop
1137    PREFERENCES_SCREENSAVER_CHOOSER_BACKDROP = 0x17D12000;
1138
1139    // TvSettings > Device Preferences > Screen saver > Screen saver (chooser) >
1140    // Colors
1141    PREFERENCES_SCREENSAVER_CHOOSER_COLORS = 0x17D13000;
1142
1143    // TvSettings > Device Preferences > Screen saver > When to start
1144    PREFERENCES_SCREENSAVER_START_DELAY = 0x17D20000;
1145
1146    // TvSettings > Device Preferences > Screen saver > When to start >
1147    // 5 minutes
1148    PREFERENCES_SCREENSAVER_START_DELAY_5M = 0x17D21000;
1149
1150    // TvSettings > Device Preferences > Screen saver > When to start >
1151    // 15 minutes
1152    PREFERENCES_SCREENSAVER_START_DELAY_15M = 0x17D22000;
1153
1154    // TvSettings > Device Preferences > Screen saver > When to start >
1155    // 30 minutes
1156    PREFERENCES_SCREENSAVER_START_DELAY_30M = 0x17D23000;
1157
1158    // TvSettings > Device Preferences > Screen saver > When to start >
1159    // 1 hour
1160    PREFERENCES_SCREENSAVER_START_DELAY_1H = 0x17D24000;
1161
1162    // TvSettings > Device Preferences > Screen saver > When to start >
1163    // 2 hours
1164    PREFERENCES_SCREENSAVER_START_DELAY_2H = 0x17D25000;
1165
1166    // TvSettings > Device Preferences > Screen saver > Start now
1167    PREFERENCES_SCREENSAVER_START_NOW = 0x17D30000;
1168
1169    // TvSettings > Connected Devices (Slice)
1170    CONNECTED_SLICE = 0x18000000;
1171
1172    // TvSettings > Connected Devices (Slice) > Connect remote or headphones
1173    CONNECTED_SLICE_CONNECT_NEW_DEVICES = 0x18100000;
1174
1175    // TvSettings > Connected Devices (Slice) > [A connected device]
1176    CONNECTED_SLICE_DEVICE_ENTRY = 0x18200000;
1177
1178    // TvSettings > Connected Devices (Slice) > [A connected device] >
1179    // Remote update
1180    CONNECTED_SLICE_DEVICE_ENTRY_UPDATE = 0x18210000;
1181
1182    // TvSettings > Connected Devices (Slice) > [A connected device] > Rename
1183    CONNECTED_SLICE_DEVICE_ENTRY_RENAME = 0x18220000;
1184
1185    // TvSettings > Connected Devices (Slice) > [A connected device] > Forget
1186    CONNECTED_SLICE_DEVICE_ENTRY_FORGET = 0x18230000;
1187
1188    // TvSettings > Connected Devices (Slice) > HDMI-CEC
1189    CONNECTED_SLICE_HDMICEC = 0x18300000;
1190
1191    // TvSettings > Connected Devices (Slice) > HDMI-CEC > Enable (toggle)
1192    CONNECTED_SLICE_HDMICEC_ON_OFF = 0x18310000;
1193
1194    // TvSettings > Connected Devices (aliasing CONNECTED_SLICE)
1195    CONNECTED_CLASSIC = 0x18000000;
1196
1197    // TvSettings > Connected Devices > Connect remote
1198    // (aliasing CONNECTED_SLICE_CONNECT_NEW_DEVICES)
1199    CONNECTED_CLASSIC_CONNECT_REMOTE = 0x18100000;
1200
1201    // TvSettings > Connected Devices > [A connected device]
1202    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY)
1203    CONNECTED_CLASSIC_DEVICE_ENTRY = 0x18200000;
1204
1205    // TvSettings > Connected Devices > [A connected device] > Update
1206    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY_UPDATE)
1207    CONNECTED_CLASSIC_DEVICE_ENTRY_UPDATE = 0x18210000;
1208
1209    // TvSettings > Connected Devices > [A connected device] > Rename
1210    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY_RENAME)
1211    CONNECTED_CLASSIC_DEVICE_ENTRY_RENAME = 0x18220000;
1212
1213    // TvSettings > Connected Devices > [A connected device] > Forget
1214    // (aliasing CONNECTED_SLICE_DEVICE_ENTRY_FORGET)
1215    CONNECTED_CLASSIC_DEVICE_ENTRY_FORGET = 0x18230000;
1216
1217    // TvSettings > Connected Devices > HDMI-CEC
1218    // (aliasing CONNECTED_SLICE_HDMICEC)
1219    CONNECTED_CLASSIC_HDMICEC = 0x18300000;
1220
1221    // TvSettings > Connected Devices > HDMI-CEC > Enable (toggle)
1222    // (aliasing CONNECTED_SLICE_HDMICEC_ON_OFF)
1223    CONNECTED_CLASSIC_HDMICEC_ON_OFF = 0x18310000;
1224
1225    // TvSettings > Help & Feedback
1226    FEEDBACK = 0x19000000;
1227
1228    // TvSettings > Help & Feedback > Send feedback
1229    FEEDBACK_SEND = 0x19100000;
1230}
1231