Android SDK tools platform-tools build-tools 区别



sdk tools:针对pc平台下使用的工具:比如模拟器,.9patch工具,性能追踪可视化工具traceview,

platform-tools:针对pc端和移动端进行交互的一些工具:比如adb工具(通过该工具pc端获取移动端log信息),sqlite3工具(通过该工具查询移动端数据库信息)

build-tools:aapt工具,aidl工具   

aapt编译资源文件得到二进制xml和R.Java

aidl工具将aidl文件--Java interface

javac:  R.java  +java interface + application source code+thrid jar->class.dex文件 

apkbuilder: class.dex+binary resouce+other resouce--->xx.apk


你可能感兴趣的:(android)