gpt4 book ai didi

android - phonegap adb 中的 INSTALL_FAILED_OLDER_SDK

转载 作者:行者123 更新时间:2023-11-29 01:49:58 24 4
gpt4 key购买 nike

我正在尝试将应用程序安装到我的设备中。我输入 phonegap local build android 并编译得很好。然后我输入 phonegap run android,我在终端中得到以下不错的回复:

syd@whitebook:~/Desktop/testapp$ phonegap run android
[phonegap] detecting Android SDK environment...
[phonegap] using the local environment
[phonegap] compiling Android...
[phonegap] successfully compiled Android app
[phonegap] trying to install app onto device
[phonegap] successfully installed onto device

但在我的手机中找不到任何应用程序(启用调试并允许未知来源)。然后我导航到 platforms/android/bin 并执行此操作:adb install SomeTest-debug.apk我收到错误:INSTALL_FAILED_OLDER_SDK。

手机:HTC Wildfire 安卓版本:2.2.1

这是我在 www 文件夹中的 config.xml:

<?xml version='1.0' encoding='utf-8'?>
<widget id="com.tech.testapp" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
<name>SomeTest</name>
<description>
Hello World sample application that responds to the deviceready event.
</description>
<author email="support@phonegap.com" href="http://phonegap.com">
PhoneGap Team
</author>
<feature name="http://api.phonegap.com/1.0/device" />
<preference name="permissions" value="none" />
<preference name="orientation" value="default" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="true" />
<preference name="webviewbounce" value="true" />
<preference name="prerendered-icon" value="true" />
<preference name="stay-in-webview" value="false" />
<preference name="ios-statusbarstyle" value="black-opaque" />
<preference name="detect-data-types" value="true" />
<preference name="exit-on-suspend" value="false" />
<preference name="show-splash-screen-spinner" value="true" />
<preference name="auto-hide-splash-screen" value="true" />
<preference name="disable-cursor" value="false" />
<preference name="android-minSdkVersion" value="8" />
<preference name="android-installLocation" value="auto" />
<icon src="icon.png" />
<icon gap:density="ldpi" gap:platform="android" src="res/icon/android/icon-36-ldpi.png" />
<icon gap:density="mdpi" gap:platform="android" src="res/icon/android/icon-48-mdpi.png" />
<icon gap:density="hdpi" gap:platform="android" src="res/icon/android/icon-72-hdpi.png" />
<icon gap:density="xhdpi" gap:platform="android" src="res/icon/android/icon-96-xhdpi.png" />
<icon gap:platform="blackberry" src="res/icon/blackberry/icon-80.png" />
<icon gap:platform="blackberry" gap:state="hover" src="res/icon/blackberry/icon-80.png" />
<icon gap:platform="ios" height="57" src="res/icon/ios/icon-57.png" width="57" />
<icon gap:platform="ios" height="72" src="res/icon/ios/icon-72.png" width="72" />
<icon gap:platform="ios" height="114" src="res/icon/ios/icon-57-2x.png" width="114" />
<icon gap:platform="ios" height="144" src="res/icon/ios/icon-72-2x.png" width="144" />
<icon gap:platform="webos" src="res/icon/webos/icon-64.png" />
<icon gap:platform="winphone" src="res/icon/windows-phone/icon-48.png" />
<icon gap:platform="winphone" gap:role="background" src="res/icon/windows-phone/icon-173.png" />
<gap:splash gap:density="ldpi" gap:platform="android" src="res/screen/android/screen-ldpi-portrait.png" />
<gap:splash gap:density="mdpi" gap:platform="android" src="res/screen/android/screen-mdpi-portrait.png" />
<gap:splash gap:density="hdpi" gap:platform="android" src="res/screen/android/screen-hdpi-portrait.png" />
<gap:splash gap:density="xhdpi" gap:platform="android" src="res/screen/android/screen-xhdpi-portrait.png" />
<gap:splash gap:platform="blackberry" src="res/screen/blackberry/screen-225.png" />
<gap:splash gap:platform="ios" height="480" src="res/screen/ios/screen-iphone-portrait.png" width="320" />
<gap:splash gap:platform="ios" height="960" src="res/screen/ios/screen-iphone-portrait-2x.png" width="640" />
<gap:splash gap:platform="ios" height="1024" src="res/screen/ios/screen-ipad-portrait.png" width="768" />
<gap:splash gap:platform="ios" height="768" src="res/screen/ios/screen-ipad-landscape.png" width="1024" />
<gap:splash gap:platform="winphone" src="res/screen/windows-phone/screen-portrait.jpg" />
<access origin="http://127.0.0.1*" />
</widget>

如您所见,miSDK 是版本 8,如果我没记错的话,它是 Android 2.2。有人可以告诉我为什么会发生这种情况吗?阻止我在手机上运行该应用程序的问题是什么?

最佳答案

你是对的,问题出在 min-target-sdk 版本上。我认为您在 config.xml 中指定的 8 正在被 Cordova/Phonegap CLI 覆盖。编译后,当您查看应用程序本身的 AndroidManifest.xml 文件时,min-target-sdk 的值是多少?当我看我的时,它总是“10”,即 Android 2.3.3。由于这是最低支持的 SDK,这就是 adb 无法在您的模拟器上安装的原因。将您的模拟器 SDK 升级到 API 10,它应该可以工作。

Cordova 目前仅支持 Android 2.3 及以上版本,参见 https://github.com/apache/cordova-android/commit/8d8cbf6e284bc67c4e8502a6238c83d2645b815e

关于android - phonegap adb 中的 INSTALL_FAILED_OLDER_SDK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18787147/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com