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?
feedback
|
|
If you have the Android SDK installed on the server, you can use PHP's exec (or similar) to execute the $ 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 You would need to port a utility like AXMLParser from Java to PHP. | |||||
feedback
|
|
Use this in the CLI:
You can use these commands in PHP using | ||||
|
feedback
|