首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

【转】批改平台编译出的apk的适配SDK

2013-01-18 
【转】修改平台编译出的apk的适配SDKhttp://www.eoeandroid.com/thread-13527-1-1.html已解决,/build/core/v

【转】修改平台编译出的apk的适配SDK
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等级即可。

热点排行