How to extract any resource file from APK using the Androguard?

590 views Asked by At

I want to extract any file like libraries(so files) and images(app icon, background image, ETC) using the Androguard. I know The a.get_app_icon() and a.get_files_information() method returns paths, but how can I extract them as real file using the Androguard?

1

There are 1 answers

0
lqs On

Use a.zip.extract(filename) to extract that file.