我正在使用Soot检测apk文件。当我在运行soot.Main之前添加以下语句(甚至没有创建我的体变换器)时,我收到了一个regCount错误。 (对于不同的apk文件,不同的方法会出现相同的错误。)
Scene.v().addBasicClass("MyScheduler");
// PackManager.v().getPack("jtp").add(new Transform("jtp.myInstrumenter", new MyBodyTransformer()));
soot.Main.main(args);
我得到的错误是:
Transforming android.support.v4.view.ViewConfigurationCompat$FroyoViewConfigurationVersionImpl...
Exception in thread "main" java.lang.RuntimeException: regCount does not match the number of arguments of the method
at org.jf.dexlib.Code.Format.Instruction35c.checkItem(Instruction35c.java:160)
at org.jf.dexlib.Code.Format.Instruction35c.<init>(Instruction35c.java:69)
at soot.toDex.instructions.Insn35c.getRealInsn0(Insn35c.java:96)
提前致谢。
答案 0 :(得分:0)
我的问题是由我尝试添加的类代码引起的。这真的是一个微妙的观点:我使用的是“Long”的ArrayList,但我的一些方法是添加/删除“long”类型的变量。尽管Java执行装箱并且我在执行Java代码时没有遇到任何问题,但这种差异在中间语言中是有问题的。