INSTALL_FAILED_OLDER_SDK

来源:互联网 发布:完整的数据库源代码 编辑:程序博客网 时间:2024/06/05 03:49

今天用froyo编译出来的一个简单的apk在2.1上安装,提示INSTALL_FAILED_OLDER_SDK

 

网上搜索如下:

 

“修改AndroidManifest.xml

 

<uses-sdk android:minSdkVersion="5" />”

 

将此行数字改小,或者屏蔽此行。

 

 

但是我发现我的工程根本没有此行。

 

后来就加上了一行<uses-sdk android:minSdkVersion="4" />搞定

 

 

 

 

 

网上另外有人评论如下:(没试过,或许以后有用)

 

已解决,/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等级即可。