I am trying to create PHP script to get app version from Android APK file. Extracting xml file from APK (zip) file and then parsing XML is one way, but i guess it should be simpler. Something like PHP Manual, example #3. Any ideas how to create script?

link|improve this question

Do you have the possibility to install the Android SDK on the server? – Francesco Laurita Jun 10 '10 at 13:13
Where is the zip located you want to get the informatin about? – Kau-Boy Jun 10 '10 at 15:09
@Francesco: Without Android SDK @Kau-Boy: zip (apk) file is located on server with php scripts Is it possible to do something like in link I posted (example #3)? – Solata Jun 11 '10 at 6:28
feedback

2 Answers

up vote 16 down vote accepted

If you have the Android SDK installed on the server, you can use PHP's exec (or similar) to execute the aapt tool (in $ANDROID_HOME/platforms/android-X/tools).

$ aapt dump badging myapp.apk
package: name='com.example.myapp' versionCode='1530' versionName='1.5.3'

If you can't install the Android SDK, for whatever reason, then you will need to parse Android's binary XML format. The AndroidManifest.xml file inside the APK zip structure is not plain text.

You would need to port a utility like AXMLParser from Java to PHP.

link|improve this answer
Without Android SDK on server, with PHP script. I am looking in for solution like in link I posted (example #3) – Solata Jun 11 '10 at 6:31
I updated my answer. – Christopher Jun 11 '10 at 8:23
feedback

Use this in the CLI:

apktool if 1.apk
aapt dump badging 1.apk

You can use these commands in PHP using exec or shell_exec.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.