4

正如Google Developers 的文章中提到的,现在可以使用 zopfli 重新压缩 APK 文件,方法是运行zipalign -z. 在我的例子中,一个 5.1 MB 的 APK 文件减少了 200 KB。

通常我使用自定义 shell 脚本构建 APK,通过运行gradle assembleRelease.

我想zipalign -z <the final apk>在上面的命令之后运行。但是,zipalign位于目录中,除了从文件build-tools/<build tools version>中拉出并手动构建路径外,我无法找到它。<build tools version>build.gradle

是否可以使用自动在正确目录上运行zipaligngradle命令来运行,而无需我重新构建路径?zipalignbuild-tools

例如一个命令,如gradle runBuildTools zipalign -z $FINAL_APK $FINAL_APK.out

4

1 回答 1

3

您链接到的文章已使用 gradle 任务进行了更新,以将 zopfli 压缩添加到 assembleRelease 任务的末尾。

//add zopfli to variants with release build type
android.applicationVariants.all { variant ->
  if (variant.buildType.name == 'release') {
    variant.outputs.each { output ->
        output.assemble.doLast {
            println "Zopflifying... it might take a while"
            exec {
                commandLine output.zipAlign.zipAlignExe,'-f','-z', '4', output.outputFile.absolutePath , output.outputFile.absolutePath.replaceAll('\\.apk$', '-zopfli.apk')
            }
        }
    }
  }
}
于 2016-02-29T00:13:29.557 回答