您的位置:首页 > 移动开发 > Android开发

查看Android源码版本

2013-11-16 18:12 423 查看
查看android源码版本

$ vim build\core\version_defaults.mk

查看PLATFORM_VERSION

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 := 2.3.5

endif

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.1.2

endif

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.3

endif
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 源码 version