Reputation: 2582
I removed some sensitive permissions, such as SMS related permission, phone call permissions, and so on, from my app AndroidManifest file. However, I found in the generated full merged AndroidManifest file in the build folder, there still exits such permission. I think this is because some 3rd library using it. The question is, is there some convenient way to find out which component/aar imported such permission? There are too many such modules.
Upvotes: 1
Views: 64
Reputation: 24907
You can check it as follows:
Merged Manifest
tab at the bottomIn the Merging log at the bottom, you will see which module added this permission
Upvotes: 3