“查看源代码版本”的版本间的差异
来自个人维基
(以“build/core/version_defaults.mk <pre> ifeq "" "$(PLATFORM_VERSION)" # This is the canonical definition of the platform version, # which is the version that we re...”为内容创建页面) |
2015年5月6日 (三) 20:27的最后版本
build/core/version_defaults.mk
ifeq "" "$(PLATFORM_VERSION)" # This is the canonical definition of the platform version, # which is the version that we reveal to the end user. # Update this value when the platform version changes (rather # than overriding it somewhere else). Can be an arbitrary string. PLATFORM_VERSION := 4.4 endif ifeq "" "$(PLATFORM_SDK_VERSION)" # This is the canonical definition of the SDK version, which defines # the set of APIs and functionality available in the platform. It # is a single integer that increases monotonically as updates to # the SDK are released. It should only be incremented when the APIs for # the new release are frozen (so that developers don't write apps against # intermediate builds). During development, this number remains at the # SDK version the branch is based on and PLATFORM_VERSION_CODENAME holds # the code-name of the new development work. PLATFORM_SDK_VERSION := 19 endif