gpt4 book ai didi

android - 失败 [INSTALL_FAILED_OLDER_SDK] Android Studio

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:21:00 27 4
gpt4 key购买 nike

我是 Android 的新手,我正在使用 Android Studio。我创建了一个新项目来展示 Hello World!但由于此错误,我无法让它在 AVD 上运行:失败 [INSTALL_FAILED_OLDER_SDK]。

我已经搜索过答案,我知道它与 build.gradle 和 minSdkVersion 有关,但任何答案都对我有用。

这是我的 AndroidManifest.xml :

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

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".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>

这是我的 build.gradle :

apply plugin: 'com.android.application'

android {
compileSdkVersion 'android-L'
buildToolsVersion "20.0.0"

defaultConfig {
applicationId "com.example.scoelli.test"
minSdkVersion 8
targetSdkVersion 'L'
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}

我不仅要感谢答案,还要感谢解释。

谢谢!

最佳答案

除非您知道要在您的应用程序中使用 Android L 开发者预览版,否则不要使用它进行定位和编译。它在很大程度上仍然是一个预览版,并且似乎针对预览版的应用程序针对和编译会导致任何非 L 设备出现此错误。

更新 build.gradle 中的这些行以坚持使用最新的稳定版本(Android 4.4,API 19):

android {
compileSdkVersion 19

defaultConfig {
targetSdkVersion 19
}
}

关于android - 失败 [INSTALL_FAILED_OLDER_SDK] Android Studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24518418/

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