INSTALL_FAILED_OLDER_SDK

INSTALL_FAILED_OLDER_SDK

今天在honeycomb上面编译calculator~只是替换了一下calculator里面的arity-2.1.2.jar和arity-1.3.3.jar

提示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等级即可。

你可能感兴趣的:(xml,android)