• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2017 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;
20
21option java_outer_classname = "AppProtoEnums";
22option java_multiple_files = true;
23
24// ActivityManagerInternal.java's APP_TRANSITION reasons.
25enum AppTransitionReasonEnum {
26    APP_TRANSITION_REASON_UNKNOWN = 0;
27    // The transition was started because we drew the splash screen.
28    APP_TRANSITION_SPLASH_SCREEN = 1;
29    // The transition was started because all app windows were drawn.
30    APP_TRANSITION_WINDOWS_DRAWN = 2;
31    // The transition was started because of a timeout.
32    APP_TRANSITION_TIMEOUT = 3;
33    // The transition was started because we drew a task snapshot.
34    APP_TRANSITION_SNAPSHOT = 4;
35    // The transition was started because it was a recents animation and we only needed to wait on
36    // the wallpaper.
37    APP_TRANSITION_RECENTS_ANIM = 5;
38}
39
40// ActivityManager.java PROCESS_STATEs
41// Next tag: 1021
42enum ProcessStateEnum {
43    // Unlike the ActivityManager PROCESS_STATE values, the ordering and numerical values
44    // here are completely fixed and arbitrary. Order is irrelevant.
45    // No attempt need be made to keep them in sync.
46    // The values here must not be modified. Any new process states can be appended to the end.
47
48    // Process state that is unknown to this proto file (i.e. is not mapped
49    // by ActivityManager.processStateAmToProto()). Can only happen if there's a bug in the mapping.
50    PROCESS_STATE_UNKNOWN_TO_PROTO = 998;
51    // Not a real process state.
52    PROCESS_STATE_UNKNOWN = 999;
53    // Process is a persistent system process.
54    PROCESS_STATE_PERSISTENT = 1000;
55    // Process is a persistent system process and is doing UI.
56    PROCESS_STATE_PERSISTENT_UI = 1001;
57    // Process is hosting the current top activities. Note that this covers
58    // all activities that are visible to the user.
59    PROCESS_STATE_TOP = 1002;
60    // Process is bound to a TOP app.
61    PROCESS_STATE_BOUND_TOP = 1020;
62    // Process is hosting a foreground service.
63    PROCESS_STATE_FOREGROUND_SERVICE = 1003;
64    // Process is hosting a service bound by the system or another foreground app.
65    PROCESS_STATE_BOUND_FOREGROUND_SERVICE = 1004;
66    // Process is important to the user, and something they are aware of.
67    PROCESS_STATE_IMPORTANT_FOREGROUND = 1005;
68    // Process is important to the user, but not something they are aware of.
69    PROCESS_STATE_IMPORTANT_BACKGROUND = 1006;
70    // Process is in the background transient so we will try to keep running.
71    PROCESS_STATE_TRANSIENT_BACKGROUND = 1007;
72    // Process is in the background running a backup/restore operation.
73    PROCESS_STATE_BACKUP = 1008;
74    // Process is in the background running a service. Unlike oom_adj, this
75    // level is used for both the normal running in background state and the
76    // executing operations state.
77    PROCESS_STATE_SERVICE = 1009;
78    // Process is in the background running a receiver. Note that from the
79    // perspective of oom_adj, receivers run at a higher foreground level, but
80    // for our prioritization here that is not necessary and putting them
81    // below services means many fewer changes in some process states as they
82    // receive broadcasts.
83    PROCESS_STATE_RECEIVER = 1010;
84    // Same as PROCESS_STATE_TOP but while device is sleeping.
85    PROCESS_STATE_TOP_SLEEPING = 1011;
86    // Process is in the background, but it can't restore its state so we want
87    // to try to avoid killing it.
88    PROCESS_STATE_HEAVY_WEIGHT = 1012;
89    // Process is in the background but hosts the home activity.
90    PROCESS_STATE_HOME = 1013;
91    // Process is in the background but hosts the last shown activity.
92    PROCESS_STATE_LAST_ACTIVITY = 1014;
93    // Process is being cached for later use and contains activities.
94    PROCESS_STATE_CACHED_ACTIVITY = 1015;
95    // Process is being cached for later use and is a client of another cached
96    // process that contains activities.
97    PROCESS_STATE_CACHED_ACTIVITY_CLIENT = 1016;
98    // Process is being cached for later use and has an activity that corresponds
99    // to an existing recent task.
100    PROCESS_STATE_CACHED_RECENT = 1017;
101    // Process is being cached for later use and is empty.
102    PROCESS_STATE_CACHED_EMPTY = 1018;
103    // Process does not exist.
104    PROCESS_STATE_NONEXISTENT = 1019;
105}
106
107// frameworks/base/services/core/java/com/android/server/am/OomAdjuster.java
108// Proto enum equivalents for "OomAdjReason"
109enum OomChangeReasonEnum {
110    OOM_ADJ_REASON_UNKNOWN_TO_PROTO = -1;
111    OOM_ADJ_REASON_NONE = 0;
112    OOM_ADJ_REASON_ACTIVITY = 1;
113    OOM_ADJ_REASON_FINISH_RECEIVER = 2;
114    OOM_ADJ_REASON_START_RECEIVER = 3;
115    OOM_ADJ_REASON_BIND_SERVICE = 4;
116    OOM_ADJ_REASON_UNBIND_SERVICE = 5;
117    OOM_ADJ_REASON_START_SERVICE = 6;
118    OOM_ADJ_REASON_GET_PROVIDER = 7;
119    OOM_ADJ_REASON_REMOVE_PROVIDER = 8;
120    OOM_ADJ_REASON_UI_VISIBILITY = 9;
121    OOM_ADJ_REASON_ALLOWLIST = 10;
122    OOM_ADJ_REASON_PROCESS_BEGIN = 11;
123    OOM_ADJ_REASON_PROCESS_END = 12;
124    OOM_ADJ_REASON_SHORT_FGS_TIMEOUT = 13;
125    OOM_ADJ_REASON_SYSTEM_INIT = 14;
126    OOM_ADJ_REASON_BACKUP = 15;
127    OOM_ADJ_REASON_SHELL = 16;
128    OOM_ADJ_REASON_REMOVE_TASK = 17;
129    OOM_ADJ_REASON_UID_IDLE = 18;
130    OOM_ADJ_REASON_STOP_SERVICE = 19;
131    OOM_ADJ_REASON_EXECUTING_SERVICE = 20;
132    OOM_ADJ_REASON_RESTRICTION_CHANGE = 21;
133    OOM_ADJ_REASON_COMPONENT_DISABLED = 22;
134}
135
136// AppOpsManager.java - operation ids for logging
137enum AppOpEnum {
138    APP_OP_NONE = -1;
139    APP_OP_COARSE_LOCATION = 0;
140    APP_OP_FINE_LOCATION = 1;
141    APP_OP_GPS = 2;
142    APP_OP_VIBRATE = 3;
143    APP_OP_READ_CONTACTS = 4;
144    APP_OP_WRITE_CONTACTS = 5;
145    APP_OP_READ_CALL_LOG = 6;
146    APP_OP_WRITE_CALL_LOG = 7;
147    APP_OP_READ_CALENDAR = 8;
148    APP_OP_WRITE_CALENDAR = 9;
149    APP_OP_WIFI_SCAN = 10;
150    APP_OP_POST_NOTIFICATION = 11;
151    APP_OP_NEIGHBORING_CELLS = 12;
152    APP_OP_CALL_PHONE = 13;
153    APP_OP_READ_SMS = 14;
154    APP_OP_WRITE_SMS = 15;
155    APP_OP_RECEIVE_SMS = 16;
156    APP_OP_RECEIVE_EMERGENCY_SMS = 17;
157    APP_OP_RECEIVE_MMS = 18;
158    APP_OP_RECEIVE_WAP_PUSH = 19;
159    APP_OP_SEND_SMS = 20;
160    APP_OP_READ_ICC_SMS = 21;
161    APP_OP_WRITE_ICC_SMS = 22;
162    APP_OP_WRITE_SETTINGS = 23;
163    APP_OP_SYSTEM_ALERT_WINDOW = 24;
164    APP_OP_ACCESS_NOTIFICATIONS = 25;
165    APP_OP_CAMERA = 26;
166    APP_OP_RECORD_AUDIO = 27;
167    APP_OP_PLAY_AUDIO = 28;
168    APP_OP_READ_CLIPBOARD = 29;
169    APP_OP_WRITE_CLIPBOARD = 30;
170    APP_OP_TAKE_MEDIA_BUTTONS = 31;
171    APP_OP_TAKE_AUDIO_FOCUS = 32;
172    APP_OP_AUDIO_MASTER_VOLUME = 33;
173    APP_OP_AUDIO_VOICE_VOLUME = 34;
174    APP_OP_AUDIO_RING_VOLUME = 35;
175    APP_OP_AUDIO_MEDIA_VOLUME = 36;
176    APP_OP_AUDIO_ALARM_VOLUME = 37;
177    APP_OP_AUDIO_NOTIFICATION_VOLUME = 38;
178    APP_OP_AUDIO_BLUETOOTH_VOLUME = 39;
179    APP_OP_WAKE_LOCK = 40;
180    APP_OP_MONITOR_LOCATION = 41;
181    APP_OP_MONITOR_HIGH_POWER_LOCATION = 42;
182    APP_OP_GET_USAGE_STATS = 43;
183    APP_OP_MUTE_MICROPHONE = 44;
184    APP_OP_TOAST_WINDOW = 45;
185    APP_OP_PROJECT_MEDIA = 46;
186    APP_OP_ACTIVATE_VPN = 47;
187    APP_OP_WRITE_WALLPAPER = 48;
188    APP_OP_ASSIST_STRUCTURE = 49;
189    APP_OP_ASSIST_SCREENSHOT = 50;
190    APP_OP_READ_PHONE_STATE = 51;
191    APP_OP_ADD_VOICEMAIL = 52;
192    APP_OP_USE_SIP = 53;
193    APP_OP_PROCESS_OUTGOING_CALLS = 54;
194    APP_OP_USE_FINGERPRINT = 55;
195    APP_OP_BODY_SENSORS = 56;
196    APP_OP_READ_CELL_BROADCASTS = 57;
197    APP_OP_MOCK_LOCATION = 58;
198    APP_OP_READ_EXTERNAL_STORAGE = 59;
199    APP_OP_WRITE_EXTERNAL_STORAGE = 60;
200    APP_OP_TURN_SCREEN_ON = 61;
201    APP_OP_GET_ACCOUNTS = 62;
202    APP_OP_RUN_IN_BACKGROUND = 63;
203    APP_OP_AUDIO_ACCESSIBILITY_VOLUME = 64;
204    APP_OP_READ_PHONE_NUMBERS = 65;
205    APP_OP_REQUEST_INSTALL_PACKAGES = 66;
206    APP_OP_PICTURE_IN_PICTURE = 67;
207    APP_OP_INSTANT_APP_START_FOREGROUND = 68;
208    APP_OP_ANSWER_PHONE_CALLS = 69;
209    APP_OP_RUN_ANY_IN_BACKGROUND = 70;
210    APP_OP_CHANGE_WIFI_STATE = 71;
211    APP_OP_REQUEST_DELETE_PACKAGES = 72;
212    APP_OP_BIND_ACCESSIBILITY_SERVICE = 73;
213    APP_OP_ACCEPT_HANDOVER = 74;
214    APP_OP_MANAGE_IPSEC_TUNNELS = 75;
215    APP_OP_START_FOREGROUND = 76;
216    APP_OP_BLUETOOTH_SCAN = 77;
217    APP_OP_USE_BIOMETRIC = 78;
218    APP_OP_ACTIVITY_RECOGNITION = 79;
219    APP_OP_SMS_FINANCIAL_TRANSACTIONS = 80;
220    APP_OP_READ_MEDIA_AUDIO = 81;
221    APP_OP_WRITE_MEDIA_AUDIO = 82;
222    APP_OP_READ_MEDIA_VIDEO = 83;
223    APP_OP_WRITE_MEDIA_VIDEO = 84;
224    APP_OP_READ_MEDIA_IMAGES = 85;
225    APP_OP_WRITE_MEDIA_IMAGES = 86;
226    APP_OP_LEGACY_STORAGE = 87;
227    APP_OP_ACCESS_ACCESSIBILITY = 88;
228    APP_OP_READ_DEVICE_IDENTIFIERS = 89;
229    APP_OP_ACCESS_MEDIA_LOCATION = 90;
230    APP_OP_QUERY_ALL_PACKAGES = 91;
231    APP_OP_MANAGE_EXTERNAL_STORAGE = 92;
232    APP_OP_INTERACT_ACROSS_PROFILES = 93;
233    APP_OP_ACTIVATE_PLATFORM_VPN = 94;
234    APP_OP_LOADER_USAGE_STATS = 95;
235    APP_OP_DEPRECATED_1 = 96 [deprecated = true];
236    APP_OP_AUTO_REVOKE_PERMISSIONS_IF_UNUSED = 97;
237    APP_OP_AUTO_REVOKE_MANAGED_BY_INSTALLER = 98;
238    APP_OP_NO_ISOLATED_STORAGE = 99;
239    APP_OP_PHONE_CALL_MICROPHONE = 100;
240    APP_OP_PHONE_CALL_CAMERA = 101;
241    APP_OP_RECORD_AUDIO_HOTWORD = 102;
242    APP_OP_MANAGE_ONGOING_CALLS = 103;
243    APP_OP_MANAGE_CREDENTIALS = 104;
244    APP_OP_USE_ICC_AUTH_WITH_DEVICE_IDENTIFIER = 105;
245    APP_OP_RECORD_AUDIO_OUTPUT = 106;
246    APP_OP_SCHEDULE_EXACT_ALARM = 107;
247    APP_OP_FINE_LOCATION_SOURCE = 108;
248    APP_OP_COARSE_LOCATION_SOURCE = 109;
249    APP_OP_MANAGE_MEDIA = 110;
250    APP_OP_BLUETOOTH_CONNECT = 111;
251    APP_OP_UWB_RANGING = 112;
252    APP_OP_ACTIVITY_RECOGNITION_SOURCE = 113;
253    APP_OP_BLUETOOTH_ADVERTISE = 114;
254    APP_OP_RECORD_INCOMING_PHONE_AUDIO = 115;
255    APP_OP_NEARBY_WIFI_DEVICES = 116;
256    APP_OP_ESTABLISH_VPN_SERVICE = 117;
257    APP_OP_ESTABLISH_VPN_MANAGER = 118;
258    APP_OP_ACCESS_RESTRICTED_SETTINGS = 119;
259    APP_OP_RECEIVE_AMBIENT_TRIGGER_AUDIO = 120;
260    APP_OP_RECEIVE_EXPLICIT_USER_INTERACTION_AUDIO = 121;
261    APP_OP_RUN_USER_INITIATED_JOBS = 122;
262    APP_OP_READ_MEDIA_VISUAL_USER_SELECTED = 123;
263    APP_OP_SYSTEM_EXEMPT_FROM_SUSPENSION = 124;
264    APP_OP_SYSTEM_EXEMPT_FROM_DISMISSIBLE_NOTIFICATIONS = 125;
265    APP_OP_READ_WRITE_HEALTH_DATA = 126;
266    APP_OP_FOREGROUND_SERVICE_SPECIAL_USE = 127;
267    APP_OP_SYSTEM_EXEMPT_FROM_POWER_RESTRICTIONS = 128;
268    APP_OP_SYSTEM_EXEMPT_FROM_HIBERNATION = 129;
269    APP_OP_SYSTEM_EXEMPT_FROM_ACTIVITY_BG_START_RESTRICTION = 130;
270    APP_OP_CAPTURE_CONSENTLESS_BUGREPORT_ON_USERDEBUG_BUILD = 131;
271    APP_OP_BODY_SENSORS_WRIST_TEMPERATURE = 132 [deprecated = true];
272    APP_OP_USE_FULL_SCREEN_INTENT = 133;
273    APP_OP_CAMERA_SANDBOXED = 134;
274    APP_OP_RECORD_AUDIO_SANDBOXED = 135;
275}
276
277/**
278 * The reason code that why app process is killed.
279 */
280enum AppExitReasonCode {
281    /**
282     * Application process died due to unknown reason.
283     */
284    REASON_UNKNOWN = 0;
285
286    /**
287     * Application process exit normally by itself, for example,
288     * via {@link android.os.Process#exit}; {@link #status} will specify the exit code.
289     *
290     * <p>Applications should normally not do this, as the system has a better knowledge
291     * in terms of process management.</p>
292     */
293    REASON_EXIT_SELF = 1;
294
295    /**
296     * Application process died due to the result of an OS signal; for example,
297     * {@link android.os.Process#SIGNAL_KILL}; {@link #status} will specify the signum.
298     */
299    REASON_SIGNALED = 2;
300
301    /**
302     * Application process was killed by the system low memory killer, meaning the system was
303     * under memory pressure at the time of kill.
304     */
305    REASON_LOW_MEMORY = 3;
306
307    /**
308     * Application process died because of an unhandled exception in Java code.
309     */
310    REASON_CRASH = 4;
311
312    /**
313     * Application process died because it's crashed due to a native code crash.
314     */
315    REASON_CRASH_NATIVE = 5;
316
317    /**
318     * Application process was killed due to being unresponsive (ANR).
319     */
320    REASON_ANR = 6;
321
322    /**
323     * Application process was killed because it took too long to attach to the system
324     * during the start.
325     */
326    REASON_INITIALIZATION_FAILURE = 7;
327
328    /**
329     * Application process was killed because of initialization failure,
330     * for example, it took too long to attach to the system during the start,
331     * or there was an error during initialization.
332     */
333    REASON_PERMISSION_CHANGE = 8;
334
335    /**
336     * Application process was killed by the activity manager due to excessive resource usage.
337     */
338    REASON_EXCESSIVE_RESOURCE_USAGE = 9;
339
340    /**
341     * Application process was killed because of the user request, for example,
342     * user clicked the "Force stop" button of the application in the Settings,
343     * or swiped away the application from Recents.
344     * <p>
345     * Prior to {@link android.os.Build.VERSION_CODES#UPSIDE_DOWN_CAKE}, one of the uses of this
346     * reason was indicate that an app was killed due to it being updated or any of its component states
347     * have changed without {@link android.content.pm.PackageManager#DONT_KILL_APP}
348     */
349    REASON_USER_REQUESTED = 10;
350
351    /**
352     * Application process was killed, because the user they are running as on devices
353     * with mutlple users, was stopped.
354     */
355    REASON_USER_STOPPED = 11;
356
357    /**
358     * Application process was killed because its dependency was going away, for example,
359     * a stable content provider connection's client will be killed if the provider is killed.
360     */
361    REASON_DEPENDENCY_DIED = 12;
362
363    /**
364     * Application process was killed by the system for various other reasons,
365     * for example, the application package got disabled by the user;
366     * {@link #description} will specify the cause given by the system.
367     */
368    REASON_OTHER = 13;
369
370    /**
371     * Application process was killed by App Freezer, for example, because it receives
372     * sync binder transactions while being frozen.
373     */
374    REASON_FREEZER = 14;
375
376    /**
377     * Application process was killed because the app was uninstalled, disabled, or any of its
378     * component states have changed without {@link android.content.pm.PackageManager#DONT_KILL_APP}
379     * <p>
380     * Prior to {@link android.os.Build.VERSION_CODES#UPSIDE_DOWN_CAKE},
381     * {@link #REASON_USER_REQUESTED} was used to indicate that an app was updated.
382     */
383    REASON_PACKAGE_STATE_CHANGE = 15;
384
385    /**
386     * Application process was killed because it was updated.
387     * <p>
388     * Prior to {@link android.os.Build.VERSION_CODES#UPSIDE_DOWN_CAKE},
389     * {@link #REASON_USER_REQUESTED} was used to indicate that an app was updated.
390     */
391    REASON_PACKAGE_UPDATED = 16;
392}
393
394/**
395 * The supplemental reason code that why app process is killed
396 */
397enum AppExitSubReasonCode {
398    /**
399     * Application process kills subReason is unknown.
400     */
401    SUBREASON_UNKNOWN = 0;
402
403    /**
404     * Application process was killed because user quit it on the "wait for debugger" dialog.
405     */
406    SUBREASON_WAIT_FOR_DEBUGGER = 1;
407
408    /**
409     * Application process was killed by the activity manager because there were too many cached
410     * processes.
411     */
412    SUBREASON_TOO_MANY_CACHED = 2;
413
414    /**
415     * Application process was killed by the activity manager because there were too many empty
416     * processes.
417     */
418    SUBREASON_TOO_MANY_EMPTY = 3;
419
420    /**
421     * Application process was killed by the activity manager because there were too many cached
422     * processes and this process had been in empty state for a long time.
423     */
424    SUBREASON_TRIM_EMPTY = 4;
425
426    /**
427     * Application process was killed by the activity manager because system was on
428     * memory pressure and this process took large amount of cached memory.
429     */
430    SUBREASON_LARGE_CACHED = 5;
431
432    /**
433     * Application process was killed by the activity manager because the system was on
434     * low memory pressure for a significant amount of time since last idle.
435     */
436    SUBREASON_MEMORY_PRESSURE = 6;
437
438    /**
439     * Application process was killed by the activity manager due to excessive CPU usage.
440     */
441    SUBREASON_EXCESSIVE_CPU = 7;
442
443    /**
444     * System update has done (so the system update process should be killed).
445     */
446    SUBREASON_SYSTEM_UPDATE_DONE = 8;
447
448    /**
449     * Kill all foreground services, for now it only occurs when enabling the quiet
450     * mode for the managed profile.
451     */
452    SUBREASON_KILL_ALL_FG = 9;
453
454    /**
455     * All background processes except certain ones were killed, for now it only occurs
456     * when the density of the default display is changed.
457     */
458    SUBREASON_KILL_ALL_BG_EXCEPT = 10;
459
460    /**
461     * The process associated with the UID was explicitly killed, for example,
462     * it could be because of permission changes.
463     */
464    SUBREASON_KILL_UID = 11;
465
466    /**
467     * The process was explicitly killed with its PID, typically because of
468     * the low memory for surfaces.
469     */
470    SUBREASON_KILL_PID = 12;
471
472    /**
473     * The start of the process was invalid.
474     */
475    SUBREASON_INVALID_START = 13;
476
477    /**
478     * The process was killed because it's in an invalid state, typically
479     * it's triggered from SHELL.
480     */
481    SUBREASON_INVALID_STATE = 14;
482
483    /**
484     * The process was killed when it's imperceptible to user, because it was
485     * in a bad state.
486     */
487    SUBREASON_IMPERCEPTIBLE = 15;
488
489    /**
490     * The process was killed because it's being moved out from LRU list.
491     */
492    SUBREASON_REMOVE_LRU = 16;
493
494    /**
495     * The process was killed because it's isolated and was in a cached state.
496     */
497    SUBREASON_ISOLATED_NOT_NEEDED = 17;
498
499    /**
500     * The process was killed because it's in forced-app-standby state, and it's cached and
501     * its uid state is idle; this would be set only when the reason is {@link #REASON_OTHER}.
502     */
503    SUBREASON_CACHED_IDLE_FORCED_APP_STANDBY = 18;
504
505    /**
506     * The process was killed because it fails to freeze/unfreeze binder
507     * or query binder frozen info while being frozen.
508     */
509    SUBREASON_FREEZER_BINDER_IOCTL = 19;
510
511    /**
512     * The process was killed because it receives sync binder transactions
513     * while being frozen.
514     */
515    SUBREASON_FREEZER_BINDER_TRANSACTION = 20;
516
517    /**
518     * The process was killed because of force-stop, it could be due to that
519     * the user clicked the "Force stop" button of the application in the Settings;
520     * this would be set only when the reason is {@link #REASON_USER_REQUESTED}.
521     */
522    SUBREASON_FORCE_STOP = 21;
523
524    /**
525     * The process was killed because the user removed the application away from Recents;
526     * this would be set only when the reason is {@link #REASON_USER_REQUESTED}.
527     */
528    SUBREASON_REMOVE_TASK = 22;
529
530    /**
531     * The process was killed because the user stopped the application from the task manager;
532     * this would be set only when the reason is {@link #REASON_USER_REQUESTED}.
533     */
534    SUBREASON_STOP_APP = 23;
535
536    /**
537     * The process was killed because the user stopped the application from developer options,
538     * or via the adb shell commmand interface; this would be set only when the reason is
539     * {@link #REASON_USER_REQUESTED}.
540     */
541    SUBREASON_KILL_BACKGROUND = 24;
542
543    /**
544     * The process was killed because of package update; this would be set only when the reason is
545     * {@link #REASON_PACKAGE_STATE_CHANGE}.
546     *
547     * @deprecated starting {@link android.os.Build.VERSION_CODES#TIRAMISU},
548     * an app being killed due to a package update will have the reason
549     * {@link #REASON_PACKAGE_UPDATED}
550     */
551    SUBREASON_PACKAGE_UPDATE = 25;
552
553    /**
554     * The process was killed because of undelivered broadcasts; this would be set only when the
555     * reason is {@link #REASON_OTHER}.
556     */
557    SUBREASON_UNDELIVERED_BROADCAST = 26;
558
559    /**
560     * The process was killed because its associated SDK sandbox process (where it had loaded SDKs)
561     * had died; this would be set only when the reason is {@link #REASON_DEPENDENCY_DIED}.
562     */
563    SUBREASON_SDK_SANDBOX_DIED = 27;
564
565    /**
566     * The process was killed because it was an SDK sandbox process that was either not usable or
567     * was no longer being used; this would be set only when the reason is {@link #REASON_OTHER}.
568     */
569     SUBREASON_SDK_SANDBOX_NOT_NEEDED = 28;
570
571    /**
572     * The process was killed because the binder proxy limit for system server was exceeded.
573     */
574     SUBREASON_EXCESSIVE_BINDER_OBJECTS = 29;
575
576    /**
577     * The process was killed by the [kernel] Out-of-memory (OOM) killer; this
578     * would be set only when the reason is {@link #REASON_LOW_MEMORY}.
579     */
580    SUBREASON_OOM_KILL = 30;
581
582    /**
583     * The process was killed because its async kernel binder buffer is running out
584     * while being frozen.
585     */
586    SUBREASON_FREEZER_BINDER_ASYNC_FULL = 31;
587}
588
589/**
590 * The relative importance level that the system places on a process.
591 * Keep sync with the definitions in
592 * {@link android.app.ActivityManager.RunningAppProcessInfo}
593 */
594enum Importance {
595    option allow_alias = true;
596
597    IMPORTANCE_FOREGROUND = 100;
598    IMPORTANCE_FOREGROUND_SERVICE = 125;
599    IMPORTANCE_TOP_SLEEPING_PRE_28 = 150;
600    IMPORTANCE_VISIBLE = 200;
601    IMPORTANCE_PERCEPTIBLE_PRE_26 = 130;
602    IMPORTANCE_PERCEPTIBLE = 230;
603    IMPORTANCE_CANT_SAVE_STATE_PRE_26 = 170;
604    IMPORTANCE_SERVICE = 300;
605    IMPORTANCE_TOP_SLEEPING = 325;
606    IMPORTANCE_CANT_SAVE_STATE = 350;
607    IMPORTANCE_CACHED = 400;
608    IMPORTANCE_BACKGROUND = 400;
609    IMPORTANCE_EMPTY = 500;
610    IMPORTANCE_GONE = 1000;
611}
612
613/**
614 * The Resource APIs that are monitored.
615 */
616enum ResourceApiEnum {
617
618  RESOURCE_API_NONE = 0;
619  RESOURCE_API_GET_VALUE = 1;
620  RESOURCE_API_RETRIEVE_ATTRIBUTES = 2;
621}
622
623/**
624 * The game modes used by GameManager.
625 *
626 * <p>Also see {@link android.app.GameManager#GameMode}.
627 */
628enum GameMode {
629    GAME_MODE_UNSPECIFIED = 0;
630    GAME_MODE_UNSUPPORTED = 1;
631    GAME_MODE_STANDARD = 2;
632    GAME_MODE_PERFORMANCE = 3;
633    GAME_MODE_BATTERY = 4;
634    GAME_MODE_CUSTOM = 5;
635}
636
637/**
638 * The result code of foreground service type policy check.
639 */
640enum FgsTypePolicyCheckEnum {
641    FGS_TYPE_POLICY_CHECK_UNKNOWN = 0;
642    FGS_TYPE_POLICY_CHECK_OK = 1;
643    FGS_TYPE_POLICY_CHECK_DEPRECATED = 2;
644    FGS_TYPE_POLICY_CHECK_DISABLED = 3;
645    FGS_TYPE_POLICY_CHECK_PERMISSION_DENIED_PERMISSIVE = 4;
646    FGS_TYPE_POLICY_CHECK_PERMISSION_DENIED_ENFORCED = 5;
647}
648
649/**
650 * The type of the component this process is hosting.
651 */
652enum HostingComponentType {
653    HOSTING_COMPONENT_TYPE_EMPTY = 0x0;
654    HOSTING_COMPONENT_TYPE_SYSTEM = 0x0001;
655    HOSTING_COMPONENT_TYPE_PERSISTENT = 0x0002;
656    HOSTING_COMPONENT_TYPE_BACKUP = 0x0004;
657    HOSTING_COMPONENT_TYPE_INSTRUMENTATION = 0x0008;
658    HOSTING_COMPONENT_TYPE_ACTIVITY = 0x0010;
659    HOSTING_COMPONENT_TYPE_BROADCAST_RECEIVER = 0x0020;
660    HOSTING_COMPONENT_TYPE_PROVIDER = 0x0040;
661    HOSTING_COMPONENT_TYPE_STARTED_SERVICE = 0x0080;
662    HOSTING_COMPONENT_TYPE_FOREGROUND_SERVICE = 0x0100;
663    HOSTING_COMPONENT_TYPE_BOUND_SERVICE = 0x0200;
664}
665
666/**
667 * Types of broadcast.
668 */
669enum BroadcastType {
670    BROADCAST_TYPE_NONE                           = 0;
671    BROADCAST_TYPE_BACKGROUND                     = 0x0001; // 1 << 0
672    BROADCAST_TYPE_FOREGROUND                     = 0x0002; // 1 << 1
673    BROADCAST_TYPE_ALARM                          = 0x0004; // 1 << 2
674    BROADCAST_TYPE_INTERACTIVE                    = 0x0008; // 1 << 3
675    BROADCAST_TYPE_ORDERED                        = 0x0010; // 1 << 4
676    BROADCAST_TYPE_PRIORITIZED                    = 0x0020; // 1 << 5
677    BROADCAST_TYPE_RESULT_TO                      = 0x0040; // 1 << 6
678    BROADCAST_TYPE_DEFERRABLE_UNTIL_ACTIVE        = 0x0080; // 1 << 7
679    BROADCAST_TYPE_PUSH_MESSAGE                   = 0x0100; // 1 << 8
680    BROADCAST_TYPE_PUSH_MESSAGE_OVER_QUOTA        = 0x0200; // 1 << 9
681    BROADCAST_TYPE_STICKY                         = 0x0400; // 1 << 10
682    BROADCAST_TYPE_INITIAL_STICKY                 = 0x0800; // 1 << 11
683}
684
685/**
686 * Delivery group policy applied to a broadcast.
687 * Keep it in sync with BroadcastOptions#DeliveryGroupPolicy.
688 */
689enum BroadcastDeliveryGroupPolicy {
690    BROADCAST_DELIVERY_GROUP_POLICY_ALL = 0;
691    BROADCAST_DELIVERY_GROUP_POLICY_MOST_RECENT = 1;
692    BROADCAST_DELIVERY_GROUP_POLICY_MERGED = 2;
693}
694