Android Studio - Gradle无法解析appcompat-v7:23.1.1

时间:2015-12-16 11:14:29

标签: android android-studio android-gradle build.gradle

我已经开始使用Android Studio 2.0 Preview 3b的新项目

我已更新SDK。

但是在创建项目时,gradle launch错误消息: enter image description here

这是怎样的build.gradle(模块)文件:(由AS自动生成)

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.xxxxx.xxxxx"
        minSdkVersion 15
        targetSdkVersion 23
        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:23.1.1'
    compile 'com.android.support:design:23.1.1'
}

build.gradle(项目):

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.0.0-alpha2'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

当我点击错误日志中的第一个选项时,AS会打开此窗口:

enter image description here

最后说我有

enter image description here enter image description here

我该如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

我解决了卸载Android Studio的问题。真正的问题是SDK。当您卸载AS SDK仍在计算机上时,我从SDK文件夹中删除了所有这些文件。如果直接在C:上安装AS和SDK,最好的选择。在AS工作之后没有任何问题。