In Android Apps, if one App wants some permissions, it will apply for them in the AndroidManifest.xml file. But most apps will apply for more than they need.
Is there any tools that can distill the permissions from source code exclude AndroidManifest.xml? Or is it worthwhile doing the work?
Asked
Active
Viewed 171 times
1

kkwang
- 247
- 2
- 11
-
Technically this is not possible, as the behaviour of an app with inputs is hard to bound. Static analysis tools may attempt to capture the more obvious usages though. – Chris Stratton Nov 18 '14 at 02:08
-
See http://stackoverflow.com/a/37546500/1770868 – Ahmad Aghazadeh Dec 03 '16 at 13:01
-
And see http://stackoverflow.com/a/36937109/1770868 – Ahmad Aghazadeh Dec 03 '16 at 13:02