• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2006 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";
18option java_multiple_files = true;
19
20package android.content;
21
22import "frameworks/base/core/proto/android/app/window_configuration.proto";
23import "frameworks/base/core/proto/android/content/locale.proto";
24import "frameworks/base/core/proto/android/privacy.proto";
25
26/**
27 * An android Configuration object.
28 */
29message ConfigurationProto {
30    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
31
32    optional float font_scale = 1;
33    optional uint32 mcc = 2;
34    optional uint32 mnc = 3 [ (.android.privacy).dest = DEST_EXPLICIT ];
35    repeated LocaleProto locales = 4 [deprecated = true];
36    optional uint32 screen_layout = 5;
37    optional uint32 color_mode = 6;
38    optional uint32 touchscreen = 7;
39    optional uint32 keyboard = 8;
40    optional uint32 keyboard_hidden = 9;
41    optional uint32 hard_keyboard_hidden = 10;
42    optional uint32 navigation = 11;
43    optional uint32 navigation_hidden = 12;
44    optional uint32 orientation = 13;
45    optional uint32 ui_mode = 14;
46    optional uint32 screen_width_dp = 15;
47    optional uint32 screen_height_dp = 16;
48    optional uint32 smallest_screen_width_dp = 17;
49    optional uint32 density_dpi = 18;
50    optional .android.app.WindowConfigurationProto window_configuration = 19;
51    optional string locale_list = 20;
52    optional uint32 font_weight_adjustment = 21;
53    optional uint32 grammatical_gender = 22;
54}
55
56/**
57 * All current configuration data used to select resources.
58 */
59message ResourcesConfigurationProto {
60    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
61
62    required ConfigurationProto configuration = 1;
63
64    optional uint32 sdk_version = 2;
65    optional uint32 screen_width_px = 3;
66    optional uint32 screen_height_px = 4;
67}
68
69/**
70 * Overall device configuration data.
71 */
72message DeviceConfigurationProto {
73    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
74
75    optional uint32 stable_screen_width_px = 1;
76    optional uint32 stable_screen_height_px = 2;
77    optional uint32 stable_density_dpi = 3;
78
79    optional uint64 total_ram = 4;
80    optional bool low_ram = 5;
81    optional uint32 max_cores = 6;
82    optional bool has_secure_screen_lock = 7;
83
84    optional uint32 opengl_version = 8;
85    repeated string opengl_extensions = 9;
86
87    repeated string shared_libraries = 10;
88    repeated string features = 11;
89    repeated string cpu_architectures = 12;
90}
91
92/**
93 * All current configuration data device is running with, everything used
94 * to filter and target apps.
95 */
96message GlobalConfigurationProto {
97    option (.android.msg_privacy).dest = DEST_AUTOMATIC;
98
99    optional ResourcesConfigurationProto resources = 1;
100    optional DeviceConfigurationProto device = 2;
101}
102