Android Studio中的错误:INSTALL_FAILED_OLDER_SDK

时间:2014-07-06 22:05:53

标签: android android-studio

我刚刚安装了Android Studio,并从Eclipse移植我的项目。当我尝试仅运行应用程序时,我的手机是4.4.2(API 19),我收到错误Failure [INSTALL_FAILED_OLDER_SDK]。我的build.gradle看起来像这样:

apply plugin: 'com.android.application'

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

    defaultConfig {
        applicationId "com.appuccino.collegefeed"
        minSdkVersion 14
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    repositories {
        mavenCentral()
    }
}

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

我的AndroidManifest看起来使用以下内容:

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="19" />

当我尝试在我的设备上运行时,在兼容下的选择设备对话框中显示否,minSdk(API 20,L预览)!= deviceSdk(API 19)。

1 个答案:

答案 0 :(得分:1)

compileSdkVersion放到19android-L将您锁定为仅发送到“L”开发者预览版设备/模拟器图像。