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