modifying .smali files

前端 未结 3 1537
伪装坚强ぢ
伪装坚强ぢ 2020-12-23 18:11

I reverse engineered some android apks to add some instrumentation for functional testing. I want to know given an smali as following how can I add something like



        
3条回答
  •  执笔经年
    2020-12-23 18:39

    One of the simpler ways to add smali code, is to write the java code in a test android app. Disassemble using apktool. Look at the smali files to identify the smali code and use it for injecting into other apps that you have disassembled.

    Download apktool here : http://ibotpeaches.github.io/Apktool/

提交回复
热议问题