To verify that the application really uses the permissions specified in the manifest file

How to check if an application really uses the permissions requested in its manifest file. Note. The source code of the application will be provided. In my opinion, we can solve this problem manually. But he cannot generalize it. Any recommendations for resolving it will be appreciated.

+4
source share
1 answer
  • You can use apkinspector . This will show you exactly the code that uses permissions.
  • You can rebuild apk and see when it works, using logcat to find out what permission is being requested.

enter image description here

-1
source

All Articles