有没有办法同时反编译多个android apk?

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

我目前正在做的项目需要来自 android 应用程序的 .smali 文件。为了获得 .smali 文件,我必须反编译 android 应用程序。因此,有人推荐我使用 apktool。不幸的是,apktool 一次只能反编译 android 个应用程序。我需要反编译很多应用程序(超过 4000 个)。如果我一个一个反编译它会浪费我的时间。那么,有没有办法同时反编译多个android apk呢?或者,如果您可以向我推荐可以帮助我更快地从多个应用程序获取 .smali 文件的工具?谢谢。

使用标准的“查找”工具应该很容易做到这一点。

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