-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPermissionInfo_Pixel3.txt
executable file
·4558 lines (4543 loc) · 161 KB
/
PermissionInfo_Pixel3.txt
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
All Permissions:
+ group:com.felicanetworks.mfc.permission.group.FELICA_GROUP
package:com.felicanetworks.mfc
label:Osaifu-Keitai
description:Allow this application to use "Osaifu-Keitai" function
+ permission:com.felicanetworks.mfc.permission.MFC_ACCESS
package:com.felicanetworks.mfc
label:Use "Osaifu-Keitai" function.
description:Allow this application to use "Osaifu-Keitai" function
protectionLevel:normal
+ group:com.google.android.gms.permission.CAR_INFORMATION
package:com.google.android.gms
label:Car information
description:Access your car's information
+ permission:com.google.android.gms.permission.CAR_VENDOR_EXTENSION
package:com.google.android.gms
label:car vendor channel
description:Access your car's vendor channel to exchange car-specific information
protectionLevel:dangerous
+ permission:com.google.android.gms.permission.CAR_MILEAGE
package:com.google.android.gms
label:car mileage
description:Access your car's mileage information
protectionLevel:dangerous
+ permission:com.google.android.gms.permission.CAR_FUEL
package:com.google.android.gms
label:car fuel level
description:Access your car's fuel level information
protectionLevel:dangerous
+ group:android.permission-group.CONTACTS
package:android
label:Contacts
description:access your contacts
+ group:android.permission-group.PHONE
package:android
label:Phone
description:make and manage phone calls
+ permission:android.permission.ACCESS_UCE_OPTIONS_SERVICE
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.ACCESS_UCE_PRESENCE_SERVICE
package:android
label:null
description:null
protectionLevel:signature|privileged
+ group:android.permission-group.CALENDAR
package:android
label:Calendar
description:access your calendar
+ group:android.permission-group.CALL_LOG
package:android
label:Call logs
description:read and write phone call log
+ group:android.permission-group.CAMERA
package:android
label:Camera
description:take pictures and record video
+ group:android.permission-group.UNDEFINED
package:android
label:null
description:null
+ permission:android.permission.READ_SMS
package:android
label:read your text messages (SMS or MMS)
description:This app can read all SMS (text) messages stored on your phone.
protectionLevel:dangerous
+ permission:android.permission.READ_CALENDAR
package:android
label:Read calendar events and details
description:This app can read all calendar events stored on your phone and share or save your calendar data.
protectionLevel:dangerous
+ permission:android.permission.READ_CALL_LOG
package:android
label:read call log
description:This app can read your call history.
protectionLevel:dangerous
+ permission:android.permission.ACCESS_FINE_LOCATION
package:android
label:access precise location only in the foreground
description:This app can get your precise location from location services while the app is in use. Location services for your device must be turned on for the app to get location. This may increase battery usage.
protectionLevel:dangerous|instant
+ permission:android.permission.MANAGE_EXTERNAL_STORAGE
package:android
label:null
description:null
protectionLevel:signature|appop|preinstalled
+ permission:android.permission.ANSWER_PHONE_CALLS
package:android
label:answer phone calls
description:Allows the app to answer an incoming phone call.
protectionLevel:dangerous|runtime
+ permission:android.permission.RECEIVE_WAP_PUSH
package:android
label:receive text messages (WAP)
description:Allows the app to receive and process WAP messages. This permission includes the ability to monitor or delete messages sent to you without showing them to you.
protectionLevel:dangerous
+ permission:android.permission.BODY_SENSORS
package:android
label:access body sensors (like heart rate monitors)
description:Allows the app to access data from sensors that monitor your physical condition, such as your heart rate.
protectionLevel:dangerous
+ permission:android.permission.READ_PHONE_NUMBERS
package:android
label:read phone numbers
description:Allows the app to access the phone numbers of the device.
protectionLevel:dangerous|instant
+ permission:android.permission.RECEIVE_MMS
package:android
label:receive text messages (MMS)
description:Allows the app to receive and process MMS messages. This means the app could monitor or delete messages sent to your device without showing them to you.
protectionLevel:dangerous
+ permission:android.permission.RECEIVE_SMS
package:android
label:receive text messages (SMS)
description:Allows the app to receive and process SMS messages. This means the app could monitor or delete messages sent to your device without showing them to you.
protectionLevel:dangerous
+ permission:android.permission.READ_EXTERNAL_STORAGE
package:android
label:read the contents of your shared storage
description:Allows the app to read the contents of your shared storage.
protectionLevel:dangerous
+ permission:android.permission.SYSTEM_CAMERA
package:android
label:Allow an application or service access to system cameras to take pictures and videos
description:This privileged or system app can take pictures and record videos using a system camera at any time. Requires the android.permission.CAMERA permission to be held by the app as well
protectionLevel:signature|privileged
+ permission:android.permission.ACCESS_COARSE_LOCATION
package:android
label:access approximate location only in the foreground
description:This app can get your approximate location from location services while the app is in use. Location services for your device must be turned on for the app to get location.
protectionLevel:dangerous|instant
+ permission:android.permission.READ_PHONE_STATE
package:android
label:read phone status and identity
description:Allows the app to access the phone features of the device. This permission allows the app to determine the phone number and device IDs, whether a call is active, and the remote number connected by a call.
protectionLevel:dangerous
+ permission:android.permission.SEND_SMS
package:android
label:send and view SMS messages
description:Allows the app to send SMS messages. This may result in unexpected charges. Malicious apps may cost you money by sending messages without your confirmation.
protectionLevel:dangerous
+ permission:android.permission.CALL_PHONE
package:android
label:directly call phone numbers
description:Allows the app to call phone numbers without your intervention. This may result in unexpected charges or calls. Note that this doesn't allow the app to call emergency numbers. Malicious apps may cost you money by making calls without your confirmation.
protectionLevel:dangerous
+ permission:android.permission.WRITE_CONTACTS
package:android
label:modify your contacts
description:Allows the app to modify the data about your contacts stored on your phone. This permission allows apps to delete contact data.
protectionLevel:dangerous
+ permission:android.permission.CAMERA_OPEN_CLOSE_LISTENER
package:android
label:Allow an application or service to receive callbacks about camera devices being opened or closed.
description:This app can receive callbacks when any camera device is being opened (by what application) or closed.
protectionLevel:signature
+ permission:android.permission.ACCEPT_HANDOVER
package:android
label:null
description:Allows the app to continue a call which was started in another app.
protectionLevel:dangerous
+ permission:android.permission.CAMERA
package:android
label:take pictures and videos
description:This app can take pictures and record videos using the camera at any time.
protectionLevel:dangerous|instant
+ permission:android.permission.WRITE_CALENDAR
package:android
label:add or modify calendar events and send email to guests without owners' knowledge
description:This app can add, remove, or change calendar events on your phone. This app can send messages that may appear to come from calendar owners, or change events without notifying their owners.
protectionLevel:dangerous
+ permission:android.permission.WRITE_CALL_LOG
package:android
label:write call log
description:Allows the app to modify your phone's call log, including data about incoming and outgoing calls. Malicious apps may use this to erase or modify your call log.
protectionLevel:dangerous
+ permission:android.permission.USE_SIP
package:android
label:make/receive SIP calls
description:Allows the app to make and receive SIP calls.
protectionLevel:dangerous
+ permission:android.permission.PROCESS_OUTGOING_CALLS
package:android
label:reroute outgoing calls
description:Allows the app to see the number being dialed during an outgoing call with the option to redirect the call to a different number or abort the call altogether.
protectionLevel:dangerous
+ permission:android.permission.READ_CELL_BROADCASTS
package:android
label:read cell broadcast messages
description:Allows the app to read cell broadcast messages received by your device. Cell broadcast alerts are delivered in some locations to warn you of emergency situations. Malicious apps may interfere with the performance or operation of your device when an emergency cell broadcast is received.
protectionLevel:dangerous
+ permission:android.permission.GET_ACCOUNTS
package:android
label:find accounts on the device
description:Allows the app to get the list of accounts known by the phone. This may include any accounts created by applications you have installed.
protectionLevel:dangerous
+ permission:android.permission.WRITE_EXTERNAL_STORAGE
package:android
label:modify or delete the contents of your shared storage
description:Allows the app to write the contents of your shared storage.
protectionLevel:dangerous
+ permission:android.permission.ACTIVITY_RECOGNITION
package:android
label:recognize physical activity
description:This app can recognize your physical activity.
protectionLevel:dangerous|instant
+ permission:android.permission.RECORD_AUDIO
package:android
label:record audio
description:This app can record audio using the microphone at any time.
protectionLevel:dangerous|instant
+ permission:android.permission.READ_CONTACTS
package:android
label:read your contacts
description:Allows the app to read data about your contacts stored on your phone. Apps will also have access to the accounts on your phone that have created contacts. This may include accounts created by apps you have installed. This permission allows apps to save your contact data, and malicious apps may share contact data without your knowledge.
protectionLevel:dangerous
+ permission:android.permission.ACCESS_BACKGROUND_LOCATION
package:android
label:access location in the background
description:This app can access location at any time, even while the app is not in use.
protectionLevel:dangerous|instant
+ permission:android.permission.ACCESS_MEDIA_LOCATION
package:android
label:read locations from your media collection
description:Allows the app to read locations from your media collection.
protectionLevel:dangerous
+ permission:com.android.voicemail.permission.ADD_VOICEMAIL
package:android
label:add voicemail
description:Allows the app to add messages to your voicemail inbox.
protectionLevel:dangerous
+ group:android.permission-group.ACTIVITY_RECOGNITION
package:android
label:Physical activity
description:access your physical activity
+ group:android.permission-group.SENSORS
package:android
label:Body sensors
description:access sensor data about your vital signs
+ permission:android.permission.USE_FINGERPRINT
package:android
label:use fingerprint hardware
description:Allows the app to use fingerprint hardware for authentication
protectionLevel:normal
+ permission:android.permission.USE_BIOMETRIC
package:android
label:use biometric hardware
description:Allows the app to use biometric hardware for authentication
protectionLevel:normal
+ group:android.permission-group.LOCATION
package:android
label:Location
description:access this device's location
+ permission:com.google.android.gms.permission.CAR_SPEED
package:com.google.android.gms
label:car speed
description:Access your car's speed
protectionLevel:dangerous
+ group:android.permission-group.STORAGE
package:android
label:Files and media
description:access photos, media, and files on your device
+ group:android.permission-group.MICROPHONE
package:android
label:Microphone
description:record audio
+ group:android.permission-group.SMS
package:android
label:SMS
description:send and view SMS messages
+ ungrouped:
+ permission:com.google.android.settings.intelligence.apiproxy
package:com.google.android.settings.intelligence
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.gms.auth.api.phone.permission.SEND
package:com.google.android.gms
label:null
description:null
protectionLevel:signature
+ permission:android.permission.REAL_GET_TASKS
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.ACCESS_CACHE_FILESYSTEM
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.REMOTE_AUDIO_PLAYBACK
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.NFC_PREFERRED_PAYMENT_INFO
package:android
label:Preferred NFC Payment Service Information
description:Allows the app to get preferred nfc payment service information like registered aids and route destination.
protectionLevel:normal
+ permission:com.google.android.apps.dreamliner.permission.WRITE_DREAMLINER_INFO
package:com.google.android.apps.dreamliner
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.apps.photos.permission.C2D_MESSAGE
package:com.google.android.apps.photos
label:null
description:null
protectionLevel:signature
+ permission:android.permission.MANAGE_APPOPS
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.REGISTER_WINDOW_MANAGER_LISTENERS
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.INTENT_FILTER_VERIFICATION_AGENT
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.BIND_INCALL_SERVICE
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.PROVIDE_RESOLVER_RANKER_SERVICE
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.gms.trustagent.framework.model.DATA_CHANGE_NOTIFICATION
package:com.google.android.gms
label:null
description:null
protectionLevel:signature
+ permission:android.permission.WRITE_SETTINGS
package:android
label:modify system settings
description:Allows the app to modify the system's settings data. Malicious apps may corrupt your system's configuration.
protectionLevel:signature|appop|pre23|preinstalled
+ permission:com.google.android.vending.verifier.ACCESS_VERIFIER
package:com.android.vending
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.apps.dreamliner.permission.DREAMLINER_SERVICE
package:com.google.android.apps.dreamliner
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.android.permission.INSTALL_EXISTING_PACKAGES
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.MANAGE_TEST_NETWORKS
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.kugou.android.permission.TMF_SHARK
package:com.kugou.android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.finsky.permission.BIND_GET_INSTALL_REFERRER_SERVICE
package:com.android.vending
label:Play Install Referrer API
description:Allows the app to retrieve its install referrer information.
protectionLevel:normal
+ permission:android.permission.CONTROL_KEYGUARD
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.MANAGE_CAMERA
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.READ_WALLPAPER_INTERNAL
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.MANAGE_CRATES
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.calendar.permission.C2D_MESSAGE
package:com.google.android.calendar
label:null
description:null
protectionLevel:signature
+ permission:android.permission.CONFIGURE_WIFI_DISPLAY
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.CONFIGURE_DISPLAY_COLOR_MODE
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.SET_INPUT_CALIBRATION
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.gms.matchstick.permission.BROADCAST_LIGHTER_WEB_INFO
package:com.google.android.gms
label:null
description:null
protectionLevel:signature
+ permission:android.permission.RECOVERY
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.CONTROL_DISPLAY_COLOR_TRANSFORMS
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.TEMPORARY_ENABLE_ACCESSIBILITY
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.SET_PROCESS_LIMIT
package:android
label:null
description:null
protectionLevel:signature|privileged|development
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.sitemaps
package:com.google.android.gsf
label:Google Webmaster Tools
description:Allows apps to sign in to Google Webmaster Tools using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:com.qualcomm.permission.ATCMD
package:com.qualcomm.atfwd
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.googlequicksearchbox.permission.C2D_MESSAGE
package:com.google.android.googlequicksearchbox
label:null
description:null
protectionLevel:signature
+ permission:android.permission.READ_LOWPAN_CREDENTIAL
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.FRAME_STATS
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.gm.permission.BROADCAST_INTERNAL
package:com.google.android.gm
label:internal broadcast
description:Allow the app to access Gmail broadcast intents, used to update notifications among other things.
protectionLevel:signature
+ permission:com.google.android.gms.permission.APPINDEXING
package:com.google.android.gms
label:null
description:null
protectionLevel:signature
+ permission:android.permission.GRANT_PROFILE_OWNER_DEVICE_IDS_ACCESS
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.BRICK
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.BIND_ATTENTION_SERVICE
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.c2dm.permission.RECEIVE
package:com.google.android.gsf
label:receive data from Internet
description:Allows apps to accept cloud to device messages sent by the app's service. Using this service will incur data usage. Malicious apps could cause excess data usage.
protectionLevel:normal
+ permission:com.google.android.apps.quartz.nga.permissions.ACCESS_LOGS
package:com.google.android.googlequicksearchbox
label:null
description:null
protectionLevel:signature
+ permission:android.permission.BIND_PRINT_RECOMMENDATION_SERVICE
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.RESTART_PACKAGES
package:android
label:close other apps
description:Allows the app to end background processes of other apps. This may cause other apps to stop running.
protectionLevel:normal
+ permission:android.permission.STORAGE_INTERNAL
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.USE_CREDENTIALS
package:android
label:null
description:null
protectionLevel:normal
+ permission:android.permission.TABLET_MODE
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.NOTIFICATION_DURING_SETUP
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.NETWORK_STATS_PROVIDER
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.BIND_KEYGUARD_APPWIDGET
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.NETWORK_BYPASS_PRIVATE_DNS
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.sierrasandbox
package:com.google.android.gsf
label:Google Checkout Sandbox accounts
description:Allows apps to sign in to Google Checkout Sandbox using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:android.permission.MANAGE_FACTORY_RESET_PROTECTION
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.READ_SYSTEM_UPDATE_INFO
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.BIND_DEVICE_ADMIN
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.MODIFY_AUDIO_SETTINGS
package:android
label:change your audio settings
description:Allows the app to modify global audio settings such as volume and which speaker is used for output.
protectionLevel:normal
+ permission:android.permission.ACCESS_CHECKIN_PROPERTIES
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.KILL_UID
package:android
label:null
description:null
protectionLevel:signature|installer
+ permission:android.permission.ENTER_CAR_MODE_PRIORITIZED
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.tencent.karaoke.WNS_PUSH_BROADCAST
package:com.tencent.karaoke
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.settings.future.logging.RESTRICTED_SEND_FUTURE_LOGS
package:com.android.settings
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.SIGNAL_PERSISTENT_PROCESSES
package:android
label:null
description:null
protectionLevel:signature|privileged|development
+ permission:android.permission.BIND_PRINT_SERVICE
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.ACCESS_NOTIFICATION_POLICY
package:android
label:access Do Not Disturb
description:Allows the app to read and write Do Not Disturb configuration.
protectionLevel:normal
+ permission:com.android.permission.READ_OMADM_SETTINGS
package:com.android.omadm.service
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.ACTIVITY_EMBEDDING
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.BIND_RUNTIME_PERMISSION_PRESENTER_SERVICE
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.CONTROL_ALWAYS_ON_VPN
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.MODIFY_AUDIO_ROUTING
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.RECEIVE_BLUETOOTH_MAP
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.ACCESS_MOCK_LOCATION
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.apps.enterprise.dmagent.permission.NotificationBroadcastReceiverPermission
package:com.google.android.apps.enterprise.dmagent
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.READ_ACTIVE_EMERGENCY_SESSION
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.BIND_VR_LISTENER_SERVICE
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.GET_APP_OPS_STATS
package:android
label:null
description:null
protectionLevel:signature|privileged|development
+ permission:android.permission.RECEIVE_DATA_ACTIVITY_CHANGE
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.providers.gsf.permission.READ_GSERVICES
package:com.google.android.gsf
label:read Google service configuration
description:Allows this app to read Google service configuration data.
protectionLevel:normal
+ permission:android.permission.CONTROL_KEYGUARD_SECURE_NOTIFICATIONS
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.setupwizard.WRITE_DEVICE_ORIGIN
package:com.google.android.setupwizard
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.youtube.permission.C2D_MESSAGE
package:com.google.android.youtube
label:null
description:null
protectionLevel:signature
+ permission:android.permission.READ_WIFI_CREDENTIAL
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.BIND_DREAM_SERVICE
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.WRITE_GSERVICES
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.tencent.karaoke.permission.JPUSH_MESSAGE
package:com.tencent.karaoke
label:null
description:null
protectionLevel:signature
+ permission:android.permission.MANAGE_ONE_TIME_PERMISSION_SESSIONS
package:android
label:null
description:null
protectionLevel:signature|installer
+ permission:com.android.printspooler.permission.ACCESS_ALL_PRINT_JOBS
package:com.android.printspooler
label:null
description:null
protectionLevel:signature
+ permission:android.permission.INSTALL_LOCATION_PROVIDER
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.voicesearch.AUDIO_FILE_ACCESS
package:com.google.android.googlequicksearchbox
label:Recorded audio access
description:Can access the recorded audio utterances for notes to self, and for raw audio analysis.
protectionLevel:signature
+ permission:android.permission.USE_RESERVED_DISK
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.START_ACTIVITY_AS_CALLER
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.READ_RUNTIME_PROFILES
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.MANAGE_ACCOUNTS
package:android
label:null
description:null
protectionLevel:normal
+ permission:android.permission.CONTROL_WIFI_DISPLAY
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.ah
package:com.google.android.gsf
label:Google App Engine
description:Allows apps to sign in to Google App Engine using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.cl
package:com.google.android.gsf
label:Google Calendar
description:Allows apps to sign in to Google Calendar using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.cp
package:com.google.android.gsf
label:contacts data in Google accounts
description:Allows apps to access the contacts and profile information of account(s) stored on this Android device.
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.ig
package:com.google.android.gsf
label:iGoogle accounts
description:Allows apps to sign in to iGoogle using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:android.permission.SYSTEM_ALERT_WINDOW
package:android
label:This app can appear on top of other apps
description:This app can appear on top of other apps or other parts of the screen. This may interfere with normal app usage and change the way that other apps appear.
protectionLevel:signature|development|appop|pre23|preinstalled
+ permission:android.permission.MONITOR_DEFAULT_SMS_PACKAGE
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.INSTANT_APP_FOREGROUND_SERVICE
package:android
label:null
description:null
protectionLevel:signature|development|appop|instant
+ permission:android.permission.BIND_CARRIER_SERVICES
package:android
label:bind to carrier services
description:Allows the holder to bind to carrier services. Should never be needed for normal apps.
protectionLevel:signature|privileged
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.lh2
package:com.google.android.gsf
label:Picasa Web Albums
description:Allows apps to sign in to Picasa Web Albums using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:com.google.android.gsf.subscribedfeeds.permission.C2D_MESSAGE
package:com.google.android.gsf
label:null
description:null
protectionLevel:signature
+ permission:android.permission.BROADCAST_PHONE_ACCOUNT_REGISTRATION
package:com.android.server.telecom
label:Broadcast phone account registration
description:null
protectionLevel:signature|privileged
+ permission:android.permission.ASSOCIATE_INPUT_DEVICE_TO_DISPLAY_BY_PORT
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.START_TASKS_FROM_RECENTS
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.apps.enterprise.dmagent.permission.AutoRegisterPermission
package:com.google.android.apps.enterprise.dmagent
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.NFC_TRANSACTION_EVENT
package:android
label:null
description:null
protectionLevel:normal
+ permission:com.google.android.providers.talk.permission.WRITE_ONLY
package:com.google.android.gsf
label:write instant messages
description:Allows apps to write data to the Google Talk content provider.
protectionLevel:dangerous
+ permission:android.permission.CONTROL_LOCATION_UPDATES
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.gbase
package:com.google.android.gsf
label:Google Base
description:Allows apps to sign in to Google Base using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:android.permission.ACCESS_SHARED_LIBRARIES
package:android
label:null
description:null
protectionLevel:signature|installer
+ permission:com.google.android.gms.permission.BIND_NETWORK_TASK_SERVICE
package:com.google.android.gms
label:null
description:null
protectionLevel:signature
+ permission:com.kugou.android.permission.PUSH_WRITE_PROVIDER
package:com.kugou.android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.local
package:com.google.android.gsf
label:Google Maps
description:Allows apps to sign in to Google Maps using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.orkut
package:com.google.android.gsf
label:Orkut
description:Allows apps to sign in to Orkut using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.print
package:com.google.android.gsf
label:Google Book Search
description:Allows apps to sign in to Google Book Search using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:android.permission.GET_TOP_ACTIVITY_INFO
package:android
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.gms.auth.authzen.permission.DEVICE_SYNC_FINISHED
package:com.google.android.gms
label:null
description:null
protectionLevel:signature
+ permission:com.google.android.googleapps.permission.GOOGLE_AUTH.OTHER_SERVICES
package:com.google.android.gsf
label:access other Google services
description:Allows apps to sign in to unspecified Google services using the account(s) stored on this Android device.
protectionLevel:signature
+ permission:android.permission.CLEAR_APP_USER_DATA
package:android
label:null
description:null
protectionLevel:signature|installer
+ permission:com.google.android.xmpp.permission.USE_XMPP_ENDPOINT
package:com.google.android.gsf
label:send and receive XMPP messages to and from Google servers
description:Allows Google apps to send and receive XMPP messages to and from Google servers.
protectionLevel:signature
+ permission:android.permission.UPGRADE_RUNTIME_PERMISSIONS
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.PROVIDE_TRUST_AGENT
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.MONITOR_INPUT
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.SET_VOLUME_KEY_LONG_PRESS_LISTENER
package:android
label:null
description:null
protectionLevel:signature|privileged|development
+ permission:android.permission.BROADCAST_CALLLOG_INFO
package:com.android.server.telecom
label:Broadcast the call type/duration information
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.gms.chromesync.permission.CONTENT_PROVIDER_ACCESS
package:com.google.android.gms
label:null
description:null
protectionLevel:signature
+ permission:android.permission.INSTALL_PACKAGES
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.MANAGE_SOUND_TRIGGER
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.SEND_RESPOND_VIA_MESSAGE
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.google.android.ims.providers.ACCESS_DATA
package:com.google.android.ims
label:null
description:null
protectionLevel:normal
+ permission:com.android.permission.WHITELIST_BLUETOOTH_DEVICE
package:com.android.bluetooth
label:Whitelist bluetooth device access.
description:Allows the app to temporarily whitelist a Bluetooth device, allowing that device to send files to this device without user confirmation.
protectionLevel:signature
+ permission:android.permission.POWER_SAVER
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.ACCESS_FM_RADIO
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:com.qti.permission.AUDIO
package:org.codeaurora.ims
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.VIBRATE_ALWAYS_ON
package:android
label:null
description:null
protectionLevel:signature
+ permission:android.permission.MANAGE_VOICE_KEYPHRASES
package:android
label:null
description:null
protectionLevel:signature|privileged
+ permission:android.permission.SHUTDOWN
package:android