我需要查看文件内到底包含什么.snap
,以便我们可以检查.apk
文件,以便进行调试。有没有办法将其提取到文件和文件夹中,或者任何.snap
类似于.apk
Android Studio 上的检查器?
答案1
您可以将 snap 文件挂载为squashfs
文件系统:
sudo mount -t squashfs -o ro /path/to/my.snap /path/to/mountpoint
您可以使用文件管理器浏览/path/to/mountpoint
并查看快照文件的内容。
答案2
Snap 是经过 gpg 签名的 squashfs 文件,您可以使用 squashfs-tools 包中的 unsquashfs 来解压它们
来源:https://forum.snapcraft.io/t/archive-manager-can-open-snap-files-what-kind-of-archives-are-they/1358