Skip to content

Instantly share code, notes, and snippets.

View horizon365's full-sized avatar

horizon365

View GitHub Profile
@forthxu
forthxu / apkinfo.sh
Last active June 6, 2022 07:19
获取apk的name,icon,version,permissions,RSA等信息
#!/bin/bash
#@author forthxu.com
#说明
#找到获取apk信息有两种方式
#一种解压后读取AndroidManifest.xml,解压最好不要通过unzip因为获取的是压缩过的内容,读取不准确,可用apktool反编译解压
#另外一种可通过aapt也就是官方sdk中提供的工具读取信息
#aapt和apktoool工具 https://code.google.com/p/android-apktool
#可能存在的问题 http://www.qiansw.com/centos-apk-apktool.html
#扩展阅读,汉化apk http://bbs.dospy.com/thread-9991523-1-354-1.html