标签:form android平台 sqlite3 eclipse ace patch androi aapt orm
CompileSdkVersion:编译版本,就是运行这个项目需要的SDK,即API Level。
buildToolsVerson:是构建工具的版本,构建工具包括了打包工具aapt、dx等等。
注意:
1、buildtools的目录位于 android_sdk_path/built-tools/XXX。这个版本号一般是API—-LEVEL.0.0。
2、eclipse的project.properties中可以设置sdk.buildtools,也可以不设置,默认是指定最新版本。而在Android studio中是必须在build.gradle中设置。
/**
* android 编译基本环境配置
*/
compileSdkVersion = 26
buildToolsVersion = "26.0.0"
3、buildToolsVersion的版本需要>=CompileSdkVersion,可以用高版本的build-tool去构建一个低版本的sdk工具,例如:
/**
* android 编译基本环境配置
*/
compileSdkVersion = 23
buildToolsVersion = "26.0.0"
附录-SDK目录:
? sdk ls
build-tools extras patcher platforms tools
emulator licenses platform-tools sources
关键目录:
gradle中的compileSdkVersion和buildToolsVersion
标签:form android平台 sqlite3 eclipse ace patch androi aapt orm
原文地址:https://www.cnblogs.com/amyzhu/p/9125964.html