Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
300 views
in Technique[技术] by (71.8m points)

decompiler - Is there a way to decompile multiple android apk at the same time?

I'm currently doing project that needs .smali file from android app. In order to get .smali file i have to decompile android app. Thus, someone recommends me to use apktool. Unfortunately, apktool only can decompile an android app at one time. I need to decompile a lot of apps ( more than 4000). it will waste my time if I decompile it one by one. So, is there a way to decompile multiple android apk at the same time? or If you can recommend me tools that will help me get .smali files from multiple app faster? Thank you.

question from:https://stackoverflow.com/questions/65918889/is-there-a-way-to-decompile-multiple-android-apk-at-the-same-time

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

This should be fairly easy to do with the standard "find" tool.

cd directory_with_apks
find . -iname "*.apk" -exec apktool d -o {}_out {} ;

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...