12

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.

Akronix
  • 1,223

2 Answers2

13

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

6

Apktool

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

Akronix
  • 1,223