在Android Studio中编译文件时出错

时间:2014-09-15 04:10:02

标签: android android-studio

我是Android编程的新手。我正在使用工作室使用登录活动创建一个简单的程序。构建错误:

Waiting for device.
Target device: test_avd [emulator-5554]
Uploading file
    local path: C:\Users\User\AndroidStudioProjects\NoattaAndroid\app\build\outputs\apk\app-l-debug.apk
    remote path: /data/local/tmp/com.noatta.www.noattaandroid
Installing com.noatta.www.noattaandroid
DEVICE SHELL COMMAND: pm install -r "/data/local/tmp/com.noatta.www.noattaandroid"
pkg: /data/local/tmp/com.noatta.www.noattaandroid
Failure [INSTALL_FAILED_OLDER_SDK]

一些stackexchange帖子谈论使用L build。我尝试过,但没有工作。有人建议吗?

这是我的build.gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 20
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "com.noatta.www.noattaandroid"
        minSdkVersion 20
        targetSdkVersion 20
        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.google.android.gms:play-services:4.2.42'
    compile 'com.android.support:appcompat-v7:20.0.0'
}

1 个答案:

答案 0 :(得分:2)

我们目前有Android sdk版本19(Kit Kat)。 build.gradle中的最小SDK版本是20.至少减少到你的模拟器的Android版本。