As the title says, I'd like to be able to find whether an APK has debuggable set to true or false on a computer without having to install it on the device, run it and see whether it shows up in DDMS or not.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
This is one of those "easy once you know how" things - Use the aapt tool to inspect the manifest.
That command will give you a dump of the compiled form of the AndroidManifest.xml file- the output will look something like
(Actual output from my command prompt) in that example, the 0x0 indicates false. |
|||
|
|
|
Apparently
will return either:
or
|
|||
|
|