Skip to content
Advertisement

Tag: smali

Smali – lots of “move-object”

I’m using mt manager to edit Smali in dex. I found that there are many move-object in some classes, most of them are unnecessary. Does it impact performance? Answer Does it impact performance? No. The optimizer should eliminate any unnecessary moves when the smali code1 is compiled to native code. For what it is worth, this is similar to the

Convert .Java file to .Smali file

I reverse-engineered an Android application with APKTool and got .Smali files as source code output. I converted the .Smali files with an application to .Java files. I was able to successfully edit the .Java files but now I want to convert them back to .Smali so I can recompile the application with the new .Smali files. When I just leave

Advertisement