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