我是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'])
}
我不仅会感谢答案,还会感谢解释。
谢谢!
答案 0 :(得分:6)
除非您知道要在应用程序中使用Android L开发人员预览,否则不要使用它进行定位和编译。它仍然是一个预览版本,看起来应用程序定位和编译预览会导致任何非L设备出现此错误。
在build.gradle中更新这些行以坚持使用最新的稳定版本(Android 4.4,API 19):
android {
compileSdkVersion 19
defaultConfig {
targetSdkVersion 19
}
}
答案 1 :(得分:1)
我认为项目有
compileSdkVersion 'android-L'
目前无法在其他Android版本中安装。 我可能在那里错了,但如果您没有对L预览SDK做任何特定的事情,只需将编译版本设置为其中一个正式版本。 targetSdk也是如此。
您可以在“创建项目”向导中选择它们。
答案 2 :(得分:1)
我解决了这个问题。 我刚刚将androidS的compileSdkVersion修改为19 定位我的nexus 4.4.4。
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.12.2'
}
}
apply plugin: 'com.android.application'
repositories {
jcenter()
}
android {
**compileSdkVersion 'android-L'** modified to 19
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.antwei.uiframework.ui"
minSdkVersion 14
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'])
**compile 'com.android.support:support-v4:21.+'** modified to compile 'com.android.support:support-v4:20.0.0'
}
如何通过ide修改值。 选择文件 - &gt;项目结构 - &gt;方面 - &gt; android-gradle然后将编译的Sdk版本从android_L修改为19
抱歉,我没有足够的声誉来添加图片答案 3 :(得分:0)
如果在编译Adobe AIR移动应用程序时遇到此错误 - 只需更正&#34; minSdkVersion&#34;应用程序描述符xml文件中的这一行:
<uses-sdk android:minSdkVersion="13" android:targetSdkVersion="15"></uses-sdk>