打印apk信息
aapt dump badging app-debug.apk
配置安卓环境变量
export ANDROID_HOME=/Users/chentong/Android/sdk
export ANDROID_NDK=$ANDROID_HOME/ndk-bundle
export ANDROID_TOOLS=$ANDROID_HOME/tools
export ANDROID_PLATFORM_TOOLS=$ANDROID_HOME/platform-tools
export ANDROID_BUILD_TOOLS=$ANDROID_HOME/build-tools/26.0.2
export PATH=$PATH:$ANDROID_HOME:$ANDROID_TOOLS:$ANDROID_PLATFORM_TOOLS:$ANDROID_NDK:$ANDROID_BUILD_TOOLS
环境变量生效
source .bash_profile