Метод jar/dex для Android основан на окнах

Я видел некоторые ссылки для подсчета методов в Linux и MacOS, но я ничего не видел для Windows. Как вы рассчитываете несколько методов в файле .dex или .jar?

Ответ 1

После неудачного поиска решения я написал два простых сценария пакета/оболочки, которые это делают.

Первый метод methodcount.bat проверяет, является ли файл .dex или .jar, и если он является файлом .jar, он обрабатывает его с помощью dx в файл dex, а затем вызывает второй, printhex.ps1, который фактически проверяет количество методов в файле dex - он считывает 2 байта, начиная с 88 (немного endian) и преобразует их в десятичное число.

Чтобы использовать это, вы должны иметь dx где-то на своем пути (он находится в каталоге SDK build-tools/xx.x.x) и установить PowerShell (он уже должен быть установлен в Windows 7/8).

Использование очень просто: methodcount.bat filename.dex | filename.jar.

Вот скрипты, но вы также можете найти их в gist: https://gist.github.com/mrsasha/9f24e129ced1b1db791b.

methodcount.bat

@ECHO OFF
IF "%1"=="" GOTO MissingFileNameError
IF EXIST "%1" (GOTO ContinueProcessing) ELSE (GOTO FileDoesntExist)

:ContinueProcessing
set FileNameToProcess=%1
set FileNameForDx=%~n1.dex
IF "%~x1"==".dex" GOTO ProcessWithPowerShell

REM preprocess Jar with dx
IF "%~x1"==".jar" (
    ECHO Processing Jar %FileNameToProcess% with DX!
    CALL dx --dex --output=%FileNameForDx% %FileNameToProcess%
    set FileNameToProcess=%FileNameForDx%
    IF ERRORLEVEL 1 GOTO DxProcessingError
)

:ProcessWithPowerShell
ECHO Counting methods in DEX file %FileNameToProcess%
CALL powershell -noexit -executionpolicy bypass "& ".\printhex.ps1" %FileNameToProcess%
GOTO End

:MissingFileNameError
@ECHO Missing filename for processing
GOTO End

:DxProcessingError
@ECHO Error processing file %1% with dx!
GOTO End

:FileDoesntExist
@ECHO File %1% doesn't exist!
GOTO End

:End

printhex.ps1

<#
.SYNOPSIS
Outputs the number of methods in a dex file.

.PARAMETER Path
Specifies the path to a file. Wildcards are not permitted.

#>
param(
  [parameter(Position=0,Mandatory=$TRUE)]
    [String] $Path
)

if ( -not (test-path -literalpath $Path) ) {
  write-error "Path '$Path' not found." -category ObjectNotFound
  exit
}

$item = get-item -literalpath $Path -force
if ( -not ($? -and ($item -is [System.IO.FileInfo])) ) {
  write-error "'$Path' is not a file in the file system." -category InvalidType
  exit
}

if ( $item.Length -gt [UInt32]::MaxValue ) {
  write-error "'$Path' is too large." -category OpenError
  exit
}

$stream = [System.IO.File]::OpenRead($item.FullName)
$buffer = new-object Byte[] 2
$stream.Position = 88
$bytesread = $stream.Read($buffer, 0, 2)
$output = $buffer[0..1] 
#("{1:X2} {0:X2}") -f $output
$outputdec = $buffer[1]*256 + $buffer[0]
"Number of methods is " + $outputdec
$stream.Close() 

Ответ 2

Я вижу, что этот вопрос старый, но есть плагин Gradle, который будет работать в Windows, который будет сообщать счетчик ссылок метода в APK для каждой сборки: https://github.com/KeepSafe/dexcount-gradle-plugin.