我需要检测任何给定.apk文件的dalvik字节码作为我研究的一部分,并使用检测的字节码获得工作的,修改过的.apk。
我在Windows 7下使用Java 1.6进行编程。
输入
classes.dex
dalvik字节码。classes.dex
字节码(是的,我们假设我们已经检测了字节码)。所需的输出
classes.dex
字节码的.apk文件,而不是原始文件。问题陈述
从Java源代码获取所需输出的最直接方法是什么?
答案 0 :(得分:4)
关于原始答案的第2步:
ApkBuilder
的当前版本的来源可以找到in the official repo here,并且可以找到解释为什么应该使用它的评论also in the official repo。
在您的本地Android SDK安装中,这些类似乎存在于android-sdk/tools/lib/sdklib.jar
要首先使用自定义classes.dex
文件重建.apk,我们需要从中删除原始的classes.dex
文件。这可以使用Android SDK安装目录中的aapt.exe
工具轻松完成,例如位于此处:c:\Program Files (x86)\Android\android-sdk\platform-tools\aapt.exe
命令:
aapt.exe remove <path-to-the-apk> classes.dex
将删除该文件。
由于(...)\android-sdk\tools\apkbuilder.bat
脚本已弃用,因此构建.apks存在很多困惑。有关详细信息,请参阅this discussion。
在幕后,脚本调用ApkBuilderMain
调用未弃用的ApkBuilder
。
根据不再可用的非官方来源,我想出了以下代码段:
/**
* Builds the {@code sourceApk} with bytecode merged from {@code classesDex}. The built .apk file has the same
* name as {@code sourceApk} and is put in {@code outputDir}.<br/>
* <br/>
* <b>Precondition:</b> The {@code sourceApk} doesn't contain {@code classes.dex}, so the {@code classesDex} can be
* merged into it.
*/
private static File buildApk(File sourceApk, File classesDex, File outputDir) throws Exception
{
File outputApk;
try {
outputApk = new File(outputDir, sourceApk.getName());
ApkBuilder builder = new ApkBuilder(outputApk, sourceApk, classesDex, ApkBuilder.getDebugKeystore(), null);
builder.sealApk();
} catch (ApkCreationException e) {
throw new Exception(e);
} catch (SealedApkException e) {
throw new Exception(e);
}
return outputApk;
}