How to open an APK file in Ubuntu 18.04?

I'm trying to inspect an APK of an Android app I'm developing. I was able to open and decompress APK files using the Archive Manager application (file-roller, the standard app for compressed files), but I don't know if it's because of the latest Android Studio IDE changes or if it has to do with Ubuntu 18.04 that now I can't.

If I try to open an APK file with this Archive Manger I fails with a dialog saying:

Could not open "app-debug.apk"

Archive type not supported.

1

2 Answers

Workaround: copy [whatever].apk to [whatever].zip

cp whatever.apk whatever.zip

Then Archive Manager will work with the .zip version

enter image description here

8

Apktool

It is the perfect tool for opening and analyzing apk files, and it is cross-platform and open source :D

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like