-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcapabilities.json
21315 lines (21315 loc) · 608 KB
/
capabilities.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"permissions": [
{
"id": ".permission.C2D_MESSAGE",
"description": "Cloud to Device Messaging permission, prevents other applications from registering and receiving the application's messages. Used internally.",
"deprecated": true,
"group": "",
"protection_level": "signature"
},
{
"id": "android.accessibilityservice.AccessibilityService",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.camera",
"description": "Required to be able to access the camera device.",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.camera.any",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.camera.autofocus",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.camera.flash",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.camera.front",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.camera2.autofocus",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.camera2.full",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.location.gps",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.microphone",
"description": "Allows an application to access the microphone.",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.telephony",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.hardware.touchscreen",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCEPT_HANDOVER",
"description": "Allows a calling app to continue a call which was started in another app.",
"deprecated": false,
"group": "android.permission-group.PHONE",
"protection_level": "dangerous"
},
{
"id": "android.permission.ACCESS_ALL_DOWNLOADS",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_ALL_EXTERNAL_STORAGE",
"description": "Allows the app to access external storage for all users.",
"deprecated": "",
"group": "android.permission-group.DEVELOPMENT_TOOLS",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_AMBIENT_LIGHT_STATS",
"description": "Allows an application to collect ambient light stats.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged|development"
},
{
"id": "android.permission.ACCESS_BACKGROUND_LOCATION",
"description": "Allows an app to access location in the background.",
"deprecated": false,
"group": "android.permission-group.LOCATION",
"protection_level": "dangerous|instant"
},
{
"id": "android.permission.ACCESS_BLOBS_ACROSS_USERS",
"description": "Allows an application to access data blobs across users.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged|development|role"
},
{
"id": "android.permission.ACCESS_BLUETOOTH_SHARE",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_BROADCAST_RADIO",
"description": "Allows access to Broadcast Radio.",
"deprecated": false,
"group": "android.permission-group.HARDWARE_CONTROLS",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_CACHE_FILESYSTEM",
"description": "Allow an application to read and write the cache partition.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_CHECKIN_PROPERTIES",
"description": "Allows read/write access to the 'properties' table in the checkin database, to change values that get uploaded.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_COARSE_LOCATION",
"description": "Allows an app to access approximate location.",
"deprecated": false,
"group": "android.permission-group.LOCATION",
"protection_level": "dangerous|instant"
},
{
"id": "android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY",
"description": "Allows the holder to access content providers from outside an ApplicationThread. This permission is enforced by the ActivityManagerService on the corresponding APIs, in particular ActivityManagerService#getContentProviderExternal(String) and ActivityManagerService#removeContentProviderExternal(String).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_CONTEXT_HUB",
"description": "Allows an application to use the Context Hub.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_DOWNLOAD_MANAGER",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_DOWNLOAD_MANAGER_ADVANCED",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_DRM_CERTIFICATES",
"description": "Allows an application to provision and access DRM certificates.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_EPHEMERAL_APPS",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_FINE_LOCATION",
"description": "Allows an app to access precise location.",
"deprecated": false,
"group": "android.permission-group.LOCATION",
"protection_level": "dangerous|instant"
},
{
"id": "android.permission.ACCESS_FM_RADIO",
"description": "Allows access to FM.",
"deprecated": true,
"group": "android.permission-group.HARDWARE_CONTROLS",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_GPS",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_IMS_CALL_SERVICE",
"description": "Allows an application to access the IMS call service: making and modifying a call.",
"deprecated": false,
"group": "android.permission-group.CALL_LOG",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_INPUT_FLINGER",
"description": "Allows an application to use InputFlinger's low level features.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_INSTANT_APPS",
"description": "Allows the holder to access and manage instant applications on the device.",
"deprecated": false,
"group": "",
"protection_level": "signature|installer|verifier|role"
},
{
"id": "android.permission.ACCESS_KEYGUARD_SECURE_STORAGE",
"description": "Allows access to keyguard secure storage. Only allowed for system processes.",
"deprecated": false,
"group": "",
"protection_level": "signature|setup"
},
{
"id": "android.permission.ACCESS_LOCATION",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_LOCATION_EXTRA_COMMANDS",
"description": "Allows an application to access extra location provider commands.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "normal"
},
{
"id": "android.permission.ACCESS_LOCUS_ID_USAGE_STATS",
"description": "Allows an application to access locusId events in the usage stats.",
"deprecated": false,
"group": "",
"protection_level": "signature|role"
},
{
"id": "android.permission.ACCESS_LOWPAN_STATE",
"description": "Allows applications to access information about LoWPAN interfaces.",
"deprecated": false,
"group": "android.permission-group.NETWORK",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_MEDIA_LOCATION",
"description": "Allows an application to access any geographic locations persisted in the user's shared collection.",
"deprecated": false,
"group": "android.permission-group.STORAGE",
"protection_level": "dangerous"
},
{
"id": "android.permission.ACCESS_MESSAGES_ON_ICC",
"description": "Allows accessing the messages on ICC.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_MOCK_LOCATION",
"description": "Create mock location sources for testing or install a new location provider. This allows the app to override the location and/or status returned by other location sources such as GPS or location providers.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_MTP",
"description": "Allows access to the kernel MTP driver to implement the MTP USB protocol.",
"deprecated": false,
"group": "android.permission-group.HARDWARE_CONTROLS",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_NETWORK_CONDITIONS",
"description": "Allows an application to listen for network condition observations.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_NETWORK_STATE",
"description": "Allows applications to access information about networks.",
"deprecated": false,
"group": "android.permission-group.NETWORK",
"protection_level": "normal|instant"
},
{
"id": "android.permission.ACCESS_NOTIFICATIONS",
"description": "Allows an application to read the current set of notifications, including any metadata and intents attached.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged|appop"
},
{
"id": "android.permission.ACCESS_NOTIFICATION_POLICY",
"description": "Marker permission for applications that wish to access notification policy.",
"deprecated": false,
"group": "",
"protection_level": "normal"
},
{
"id": "android.permission.ACCESS_PDB_STATE",
"description": "Allows querying state of PersistentDataBlock.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS|android.permission-group.HARDWARE_CONTROLS",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_RCS_USER_CAPABILITY_EXCHANGE",
"description": "Required for an Application to access APIs related to RCS User Capability Exchange.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "internal|role"
},
{
"id": "android.permission.ACCESS_SHARED_LIBRARIES",
"description": "Allows an application to access shared libraries.",
"deprecated": false,
"group": "",
"protection_level": "signature|installer"
},
{
"id": "android.permission.ACCESS_SHORTCUTS",
"description": "Allows to access all app shortcuts.",
"deprecated": false,
"group": "",
"protection_level": "signature|role"
},
{
"id": "android.permission.ACCESS_SUPERUSER",
"description": "Permission declared by SuperSU for root applications.",
"deprecated": true,
"group": "",
"protection_level": ""
},
{
"id": "android.permission.ACCESS_SURFACE_FLINGER",
"description": "Allows an application to use SurfaceFlinger's low level features.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_TUNED_INFO",
"description": "Allows an application to access TV tuned info.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged|vendorPrivileged"
},
{
"id": "android.permission.ACCESS_TV_DESCRAMBLER",
"description": "Allows an application to access descrambler of TV tuner HAL.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged|vendorPrivileged"
},
{
"id": "android.permission.ACCESS_TV_TUNER",
"description": "Allows an application to access TV tuner HAL.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged|vendorPrivileged"
},
{
"id": "android.permission.ACCESS_UCE_OPTIONS_SERVICE",
"description": "Allows an application to Access UCE-OPTIONS.",
"deprecated": true,
"group": "android.permission-group.PHONE",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_UCE_PRESENCE_SERVICE",
"description": "Allows an application to Access UCE-Presence.",
"deprecated": true,
"group": "android.permission-group.PHONE",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_VIBRATOR_STATE",
"description": "Allows access to the vibrator state.",
"deprecated": false,
"group": "android.permission-group.AFFECTS_BATTERY",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACCESS_VOICE_INTERACTION_SERVICE",
"description": "Allows an application to interact with the currently active android.service.voice.VoiceInteractionService.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_VR_MANAGER",
"description": "Required to make calls to android.service.vr.IVrManager.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ACCESS_VR_STATE",
"description": "Required to access VR-Mode state and state change events via {android.app.VrStateCallback.",
"deprecated": false,
"group": "",
"protection_level": "signature|preinstalled"
},
{
"id": "android.permission.ACCESS_WIFI_STATE",
"description": "Allows applications to access information about Wi-Fi networks.",
"deprecated": false,
"group": "android.permission-group.NETWORK",
"protection_level": "normal"
},
{
"id": "android.permission.ACCESS_WIMAX_STATE",
"description": "Allows the app to determine whether WiMAX is enabled and information about any WiMAX networks that are connected.",
"deprecated": "",
"group": "android.permission-group.NETWORK",
"protection_level": "normal"
},
{
"id": "android.permission.ACCOUNT_MANAGER",
"description": "Allows applications to call into AccountAuthenticators.",
"deprecated": false,
"group": "android.permission-group.ACCOUNTS",
"protection_level": "signature"
},
{
"id": "android.permission.ACTIVITY_EMBEDDING",
"description": "Allows an application to embed other activities.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ACTIVITY_RECOGNITION",
"description": "Allows an application to recognize physical activity.",
"deprecated": false,
"group": "android.permission-group.ACTIVITY_RECOGNITION",
"protection_level": "dangerous|instant"
},
{
"id": "android.permission.ACT_AS_PACKAGE_FOR_ACCESSIBILITY",
"description": "Allows an application to perform accessibility operations (e.g. send events) on behalf of another package.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ADD_TRUSTED_DISPLAY",
"description": "Allows an application to create trusted displays.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.ADD_VOICEMAIL",
"description": "Allows an application to add voicemails into the system.",
"deprecated": false,
"group": "android.permission-group.VOICEMAIL",
"protection_level": "dangerous"
},
{
"id": "android.permission.ADJUST_RUNTIME_PERMISSIONS_POLICY",
"description": "Allows an application to change policy_fixed permissions.",
"deprecated": false,
"group": "",
"protection_level": "signature|installer"
},
{
"id": "android.permission.ALLOCATE_AGGRESSIVE",
"description": "Allows an application to aggressively allocate disk space.",
"deprecated": false,
"group": "android.permission-group.STORAGE",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ALLOW_ANY_CODEC_FOR_PLAYBACK",
"description": "Allows an application to use any media decoder when decoding for playback.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.ALLOW_PLACE_IN_MULTI_PANE_SETTINGS",
"description": "android.app.Activity should require this permission to ensure that only the settings app can embed it in a multi pane window.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.AMBIENT_WALLPAPER",
"description": "Allows wallpaper to be rendered in ambient mode.",
"deprecated": false,
"group": "",
"protection_level": "signature|preinstalled"
},
{
"id": "android.permission.ANSWER_PHONE_CALLS",
"description": "Allows the app to answer an incoming phone call.",
"deprecated": false,
"group": "android.permission-group.PHONE",
"protection_level": "dangerous|runtime"
},
{
"id": "android.permission.APPROVE_INCIDENT_REPORTS",
"description": "Allow an application to approve incident and bug reports to be shared off-device. There can be only one application installed on the device with this permission, and since this is a privileged permission, it must be in priv-app.",
"deprecated": false,
"group": "android.permission-group.DEVELOPMENT_TOOLS",
"protection_level": "signature|incidentReportApprover"
},
{
"id": "android.permission.ASEC_ACCESS",
"description": "Allows the app to get information on internal storage.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "signature"
},
{
"id": "android.permission.ASEC_CREATE",
"description": "Allows the app to create internal storage.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "signature"
},
{
"id": "android.permission.ASEC_DESTROY",
"description": "Allows the app to destroy internal storage.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "signature"
},
{
"id": "android.permission.ASEC_MOUNT_UNMOUNT",
"description": "Allows the app to mount/unmount internal storage.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "signature"
},
{
"id": "android.permission.ASEC_RENAME",
"description": "Allows the app to rename internal storage.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "signature"
},
{
"id": "android.permission.ASSOCIATE_COMPANION_DEVICES",
"description": "Allows an application to create new companion device associations.",
"deprecated": false,
"group": "",
"protection_level": "internal|role"
},
{
"id": "android.permission.ASSOCIATE_INPUT_DEVICE_TO_DISPLAY",
"description": "Allows the use of FLAG_SLIPPERY, which permits touch events to slip from the current window to the window where the touch currently is on top of.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.AUTHENTICATE_ACCOUNTS",
"description": "Allows the app to use the account authenticator capabilities of the AccountManager, including creating accounts and getting and setting their passwords.",
"deprecated": true,
"group": "android.permission-group.ACCOUNTS",
"protection_level": "normal"
},
{
"id": "android.permission.BACKGROUND_CAMERA",
"description": "Required to be able to access the camera device in the background.",
"deprecated": false,
"group": "android.permission-group.CAMERA",
"protection_level": "internal|role"
},
{
"id": "android.permission.BACKUP",
"description": "Allows an application to control the backup and restore process.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BATTERY_PREDICTION",
"description": "Allows providing the system with battery predictions. Superseded by DEVICE_POWER permission.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BATTERY_STATS",
"description": "Allows an application to collect battery statistics.",
"deprecated": false,
"group": "android.permission-group.SYSTEM_TOOLS",
"protection_level": "signature|privileged|development"
},
{
"id": "android.permission.BIND_ACCESSIBILITY_SERVICE",
"description": "Must be required by an AccessibilityService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_APPWIDGET",
"description": "Allows an application to tell the AppWidget service which application can access AppWidget's data. Malicious apps can give access to personal data to other apps.",
"deprecated": false,
"group": "android.permission-group.PERSONAL_INFO",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_ATTENTION_SERVICE",
"description": "Must be required by a AttentionService to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_AUGMENTED_AUTOFILL_SERVICE",
"description": "Must be required by a android.service.autofill.augmented.AugmentedAutofillService, to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_AUTOFILL",
"description": "Alternative version of android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE. This permission was renamed during the O previews but it was supported on the final O release, so we need to carry it over.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_AUTOFILL_FIELD_CLASSIFICATION_SERVICE",
"description": "Must be required by an android.service.autofill.AutofillFieldClassificationService to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_AUTOFILL_SERVICE",
"description": "Must be required by a AutofillService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CACHE_QUOTA_SERVICE",
"description": "Must be required by an android.app.usage.CacheQuotaService to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CALL_DIAGNOSTIC_SERVICE",
"description": "Must be required by a android.telecom.CallDiagnosticService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CALL_REDIRECTION_SERVICE",
"description": "Must be required by a CallRedirectionService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_CALL_SERVICE",
"description": "Allows the app to control when and how the user sees the in-call screen.",
"deprecated": "",
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_CARRIER_MESSAGING_CLIENT_SERVICE",
"description": "A subclass of CarrierMessagingClientService must be protected with this permission.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CARRIER_MESSAGING_SERVICE",
"description": "The system process that is allowed to bind to services in carrier apps will have this permission.",
"deprecated": true,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_CARRIER_SERVICES",
"description": "The system process that is allowed to bind to services in carrier apps will have this permission.",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_CELL_BROADCAST_SERVICE",
"description": "Allows an application to forward cell broadcast messages to the cell broadcast module. This is required in order to bind to the cell broadcast service, and ensures that only the system can forward messages to it.",
"deprecated": false,
"group": "android.permission-group.SMS",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CHOOSER_TARGET_SERVICE",
"description": "Must be required by a ChooserTargetService, to ensure that only the system can bind to it.",
"deprecated": true,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_COMPANION_DEVICE_MANAGER_SERVICE",
"description": "Must be required by the CompanionDeviceManager to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_COMPANION_DEVICE_SERVICE",
"description": "Must be required by any CompanionDeviceServices to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CONDITION_PROVIDER_SERVICE",
"description": "Must be required by a ConditionProviderService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CONNECTION_SERVICE",
"description": "Must be required by a android.telecom.ConnectionService, to ensure that only the system can bind to it. android.telecom.ConnectionServices should require android.permission.BIND_TELECOM_CONNECTION_SERVICE instead.",
"deprecated": true,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_CONTENT_CAPTURE_SERVICE",
"description": "Must be required by a android.service.contentcapture.ContentCaptureService, to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CONTENT_SUGGESTIONS_SERVICE",
"description": "Must be required by a android.service.contentsuggestions.ContentSuggestionsService, to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_CONTROLS",
"description": "Allows SystemUI to request third party controls.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_DEVICE_ADMIN",
"description": "Must be required by device administration receiver, to ensure that only the system can interact with it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_DIRECTORY_SEARCH",
"description": "Allows an application to execute contacts directory search.",
"deprecated": false,
"group": "android.permission-group.PERSONAL_INFO",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_DISPLAY_HASHING_SERVICE",
"description": "Must be required by a android.service.displayhash.DisplayHashingService to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_DOMAIN_VERIFICATION_AGENT",
"description": "Must be required by the domain verification agent's intent BroadcastReceiver, to ensure that only the system can interact with it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_DREAM_SERVICE",
"description": "Must be required by an DreamService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_EUICC_SERVICE",
"description": "Must be required by an EuiccService to ensure that only the system can bind to it.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_EXPLICIT_HEALTH_CHECK_SERVICE",
"description": "Must be required by an android.service.watchdog.ExplicitHealthCheckService to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_EXTERNAL_STORAGE_SERVICE",
"description": "Must be required by an android.service.storage.ExternalStorageService to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_GBA_SERVICE",
"description": "Must be required by an GbaService to ensure that only the system can bind to it.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_HOTWORD_DETECTION_SERVICE",
"description": "Must be required by a android.service.voice.HotwordDetectionService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_IMS_SERVICE",
"description": "Must be required by an ImsService to ensure that only the system can bind to it.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature|privileged|vendorPrivileged"
},
{
"id": "android.permission.BIND_INCALL_SERVICE",
"description": "Must be required by a InCallService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_INLINE_SUGGESTION_RENDER_SERVICE",
"description": "Must be required by an android.service.autofill.InlineSuggestionRenderService to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_INPUT_METHOD",
"description": "Must be required by an InputMethodService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_INTENT_FILTER_VERIFIER",
"description": "Must be required by intent filter verifier rintent-filtereceiver, to ensure that only the system can interact with it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_JOB_SERVICE",
"description": "Allows the system to bind to an application's task services.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_KEYGUARD_APPWIDGET",
"description": "Private permission, to restrict who can bring up a dialog to add a new keyguard widget.",
"deprecated": false,
"group": "android.permission-group.PERSONAL_INFO",
"protection_level": "signature|privileged"
},
{
"id": "android.permission.BIND_MIDI_DEVICE_SERVICE",
"description": "Must be required by an MidiDeviceService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_MUSIC_RECOGNITION_SERVICE",
"description": "Must be declared by a android.service.musicrecognition.MusicRecognitionService, to ensure that only the system can bind to it. This is not a third-party API (intended for OEMs and system apps).",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_NETWORK_RECOMMENDATION_SERVICE",
"description": "Allows the system to bind to the discovered Network Recommendation Service.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_NFC_SERVICE",
"description": "Must be required by a HostApduService or OffHostApduService to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_NOTIFICATION_ASSISTANT_SERVICE",
"description": "Must be required by an android.service.notification.NotificationAssistantService to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_NOTIFICATION_LISTENER_SERVICE",
"description": "Must be required by an NotificationListenerService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_NOTIFICATION_RANKER_SERVICE",
"description": "",
"deprecated": "",
"group": "",
"protection_level": ""
},
{
"id": "android.permission.BIND_PACKAGE_VERIFIER",
"description": "Must be required by package verifier receiver, to ensure that only the system can interact with it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_PHONE_ACCOUNT_SUGGESTION_SERVICE",
"description": "Must be required by a android.telecom.PhoneAccountSuggestionService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "android.permission-group.PHONE_CALLS",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_PRINT_RECOMMENDATION_SERVICE",
"description": "Must be required by a android.printservice.recommendation.RecommendationService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_PRINT_SERVICE",
"description": "Must be required by a PrintService, to ensure that only the system can bind to it.",
"deprecated": false,
"group": "",
"protection_level": "signature"
},
{
"id": "android.permission.BIND_PRINT_SPOOLER_SERVICE",
"description": "Must be required by the PrintSpooler to ensure that only the system can bind to it.",
"deprecated": false,