PHP:如何从android .apk文件获取版本?

问题描述 投票:19回答:5

我正在尝试创建一个PHP脚本,以从Android APK文件中获取应用程序版本。从APK(zip)文件中提取XML文件然后解析XML是一种方法,但我想它应该更简单。像PHP Manual,例如#3。任何想法如何创建脚本?

php xml android version apk
5个回答
47
投票

如果你在服务器上安装了Android SDK,你可以使用PHP的exec(或类似的)来执行aapt工具(在$ANDROID_HOME/platforms/android-X/tools中)。

$ aapt dump badging myapp.apk

输出应包括:

package: name='com.example.myapp' versionCode='1530' versionName='1.5.3'

如果由于某种原因无法安装Android SDK,那么您将需要解析Android的二进制XML格式。 APK zip结构中的AndroidManifest.xml文件不是纯文本。

您需要将utility like AXMLParser从Java移植到PHP。


8
投票

我已经创建了一组PHP函数,它们只能找到APK的版本代码。这是基于以下事实:AndroidMainfest.xml文件包含版本代码作为第一个标记,并基于axml(二进制Android XML格式)作为described here

    <?php
$APKLocation = "PATH TO APK GOES HERE";

$versionCode = getVersionCodeFromAPK($APKLocation);
echo $versionCode;

//Based on the fact that the Version Code is the first tag in the AndroidManifest.xml file, this will return its value
//PHP implementation based on the AXML format described here: https://stackoverflow.com/questions/2097813/how-to-parse-the-androidmanifest-xml-file-inside-an-apk-package/14814245#14814245
function getVersionCodeFromAPK($APKLocation) {

    $versionCode = "N/A";

    //AXML LEW 32-bit word (hex) for a start tag
    $XMLStartTag = "00100102";

    //APK is esentially a zip file, so open it
    $zip = zip_open($APKLocation);
    if ($zip) {
        while ($zip_entry = zip_read($zip)) {
            //Look for the AndroidManifest.xml file in the APK root directory
            if (zip_entry_name($zip_entry) == "AndroidManifest.xml") {
                //Get the contents of the file in hex format
                $axml = getHex($zip, $zip_entry);
                //Convert AXML hex file into an array of 32-bit words
                $axmlArr = convert2wordArray($axml);
                //Convert AXML 32-bit word array into Little Endian format 32-bit word array
                $axmlArr = convert2LEWwordArray($axmlArr);
                //Get first AXML open tag word index
                $firstStartTagword = findWord($axmlArr, $XMLStartTag);
                //The version code is 13 words after the first open tag word
                $versionCode = intval($axmlArr[$firstStartTagword + 13], 16);

                break;
            }
        }
    }
    zip_close($zip);

    return $versionCode;
}

//Get the contents of the file in hex format
function getHex($zip, $zip_entry) {
    if (zip_entry_open($zip, $zip_entry, 'r')) {
        $buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
        $hex = unpack("H*", $buf);
        return current($hex);
    }
}

    //Given a hex byte stream, return an array of words
function convert2wordArray($hex) {
    $wordArr = array();
    $numwords = strlen($hex)/8;

    for ($i = 0; $i < $numwords; $i++)
        $wordArr[] = substr($hex, $i * 8, 8);

    return $wordArr;
}

//Given an array of words, convert them to Little Endian format (LSB first)
function convert2LEWwordArray($wordArr) {
    $LEWArr = array();

    foreach($wordArr as $word) {
        $LEWword = "";
        for ($i = 0; $i < strlen($word)/2; $i++)
            $LEWword .= substr($word, (strlen($word) - ($i*2) - 2), 2);
        $LEWArr[] = $LEWword;
    }

    return $LEWArr;
}

//Find a word in the word array and return its index value
function findWord($wordArr, $wordToFind) {
    $currentword = 0;
    foreach ($wordArr as $word) {
        if ($word == $wordToFind)
            return $currentword;
        else
            $currentword++;
    }
}
    ?>

1
投票

在CLI中使用它:

apktool if 1.apk
aapt dump badging 1.apk

您可以使用execshell_exec在PHP中使用这些命令。


1
投票
aapt dump badging ./apkfile.apk | grep sdkVersion -i

你将获得一个人类可读的形式。

sdkVersion:'14'
targetSdkVersion:'14'

如果您安装了Android SDK,只需在系统中查找。我在:

<SDKPATH>/build-tools/19.0.3/aapt

1
投票

转储格式有点奇怪,并不是最容易使用的。只是为了扩展其他一些答案,这是一个shell脚本,我用它来解析APK文件的名称和版本。

aapt d badging PACKAGE | gawk $'match($0, /^application-label:\'([^\']*)\'/, a) { n = a[1] }
                               match($0, /versionName=\'([^\']*)\'/, b) { v=b[1] }
                               END { if ( length(n)>0 && length(v)>0 ) { print n, v } }'

如果您只是想要该版本,那么显然它可以更简单。

aapt d badging PACKAGE | gawk $'match($0, /versionName=\'([^\']*)\'/, v) { print v[1] }'

以下是适用于gawk和mawk的变体(如果转储格式发生变化,但是应该没问题,这种变化稍微不那么耐用):

aapt d badging PACKAGE | mawk -F\' '$1 ~ /^application-label:$/ { n=$2 }
                                    $5 ~ /^ versionName=$/ { v=$6 }
                                    END{ if ( length(n)>0 && length(v)>0 ) { print n, v } }'

aapt d badging PACKAGE | mawk -F\' '$5 ~ /^ versionName=$/ { print $6 }'
© www.soinside.com 2019 - 2024. All rights reserved.