使用java 6创建新项目时出错

时间:2016-07-08 17:49:50

标签: android android-support-library java-6

我正在尝试使用java 6(JDK 1.6.0_18)创建一个新的android项目。 我的朋友:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 20
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "com.sample.java6"
        minSdkVersion 14
        targetSdkVersion 20
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:20.0.0'
    compile 'com.android.support:design:20.0.0'
}

当我构建它时,我看到了这个错误:

enter image description here

在我的sdk经理中:

enter image description here enter image description here

我已经安装了所有东西,但我仍然遇到此错误。任何想法如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

Android Design支持库的第一个版本是“22.2.0”。您使用的是“20.0.0”,它不存在。您可以在developers blog post中查看第一个版本:

  

然后,您可以开始使用具有单个新依赖项的Design库:compile'c​​om.android.support:design:22.2.0'

重要的是要注意您应该使用SDK编译版本22来使用它(检查主要版本号)。