gpt4 book ai didi

android - Android Studio 中的 "Failure [INSTALL_FAILED_OLDER_SDK]"是什么意思?

转载 作者:IT老高 更新时间:2023-10-28 21:34:31 26 4
gpt4 key购买 nike

我得到了我用来制作应用程序的 Froyo (2.2) 设备。当我尝试将应用程序直接运行到设备时,它会显示错误提示

pkg: /data/local/tmp/com.example.HelloWorldProject
Failure [INSTALL_FAILED_OLDER_SDK]

在另一个窗口中出现错误提示

Unable to attach test reporter to test framework or test framework quit unexpectedly

似乎是什么导致了上述错误?

编辑:

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.helloworld"
android:versionCode="1"
android:versionName="1.0">

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17"/>

<application
android:allowBackup="true"
android:debuggable="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
>
<activity
android:name="com.example.HelloWorldProject.MyActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>

<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>

</manifest>

最佳答案

我改变之后

defaultConfig {
applicationId "com.example.bocheng.myapplication"
minSdkVersion 15
targetSdkVersion 'L' #change this to 19
versionCode 1
versionName "1.0"
}

build.gradle 文件中。

有效

关于android - Android Studio 中的 "Failure [INSTALL_FAILED_OLDER_SDK]"是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20622255/

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