This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |