How to find all the packages included in an apk

后端 未结 3 575
北荒
北荒 2021-01-26 13:09

I am involved in reverse engineering android apps (using apktool and androguard). I wish to find out all the packages included in an apk. The package may include the main applic

3条回答
  •  深忆病人
    2021-01-26 13:51

    You can extract your apk to see whats inside it ,by just renaming it to "apkname.zip".After renaming you can extract it like normal zip files.I guess this is what you wana see.Replace ".apk" with ".zip".Then extract it like normal zip.Then you will get "classe.dex",you can convert this into "classes-dex2jar" using dex2jar converter.And,after this using jui compiler you can view all the classes and packages.

提交回复
热议问题