转自:
http://www.eoeandroid.com/thread-13527-1-1.html
/build/core/version_defaults.mk文件中这一段
ifeq "" "$(DEFAULT_APP_TARGET_SDK)"
# This is the default minSdkVersion and targetSdkVersion to use for
# all .apks created by the build system. It can be overridden by explicitly
# setting these in the .apk's AndroidManifest.xml. It is either the code
# name of the development build or, if this is a release build, the official
# SDK version of this release.
ifeq "REL" "$(PLATFORM_VERSION_CODENAME)"
DEFAULT_APP_TARGET_SDK := $(PLATFORM_SDK_VERSION)
else
DEFAULT_APP_TARGET_SDK := $(PLATFORM_VERSION_CODENAME)
endif
endif
将DEFAULT_APP_TARGET_SDK直接赋值相应的API等级即可。
本文介绍了如何在Android项目的/build/core/version_defaults.mk文件中设置DEFAULT_APP_TARGET_SDK变量,该变量决定了应用的目标SDK版本。通过调整此变量,开发者可以指定应用所针对的Android API级别。

1万+

被折叠的 条评论
为什么被折叠?



