Extracting Android .apk and reading contents of XML file in res/layout

后端 未结 5 1715
一整个雨季
一整个雨季 2020-12-08 07:02

I am trying to reverse engineer an existing android app and understand how a particular UI is constructed. I\'ve found that I can rename the apk to zip and view some of the

5条回答
  •  余生分开走
    2020-12-08 07:54

    For those Who are shortcut lovers: and using ubunto,

    go to cmd : ctl+alt+t

    type:

    sudo apt install apktool
    

    press enter then go to your apk(to decompile) folder. by using

    cd ~/folder_name
    

    then type:

    apktool d yourAppName.apk
    

    and boom , you are done.

提交回复
热议问题