How to get manifest permissions of any installed Android app

后端 未结 3 1558
梦毁少年i
梦毁少年i 2020-12-01 10:00

Is it possible to get the manifest permissions of any installed Android application?

3条回答
  •  萌比男神i
    2020-12-01 10:27

    If you have apk file it is very simple just open cmd from start menu and write this command line:

    aapt d permissions D:\dina\app-debug.apk 
    

    take care for the path you write then you can get list from all permissions in this application and package name also like this:

    package: com.example.dinasaif.facebookintegration
    uses-permission: android.permission.INTERNET
    

提交回复
热议问题