OK, this might sound a little crazy but here goes:
I have a few hundred Android APK files sitting on a remote (dedicated) server running CentOS 5. I need to grab some meta data off these apk files - specifically: the package name and the permission matrix.
I planned on hacking together a script that would iterate through each .apk file and feeding them to the aapt
utility
aapt dump badging app.apk
.. and grabbing the output and parsing it for what I need. Works fine on Windows (I have the SDK installed)
I downloaded the platform SDK for Linux and extracted it but I could not find the aapt
utility - does this need to be downloaded separately? I'm not sure if I have to actually download the platform files like I did when I installed it on Windows - this is a headless remote server I'm accessing via SSH.
Is what I'm trying to do even possible? If not, what else could I do to grab the meta data I need?