博文

目前显示的是标签为“PackageName”的博文

查看APK的包名等信息

      说到查看Android系统里应用程序APK的包名信息的方法很多,一般我们可以反编译APK,然后查看里面的AndroidManifest.xml文件,也可以安装并运行该APK,在Logcat下查看StartActivity的相关内容,其实在Android的SDK里面已集成了aapt工具(Android Asset Packaging Tool)来查看APK的信息,该命令中,我们用到dump参数较多些,其中有如下相关参数说明:       aapt d[ump] [--values] WHAT file.{apk} [asset [asset ...]]          badging               Print the label and icon for the app declared in APK.          permissions         Print the permissions from the APK.          resources            Print the resource table from the APK.          configurations    Print the configurations in the APK.          xmltree               Print the compiled xmls in the given as...