Android Studio 3.0.1。不会同步项目

时间:2017-12-10 12:04:51

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

我刚刚在全新的Windows 7上安装了全新的Android Studio。我创建了一个新的空项目,Android Studio在项目同步时仍然失败。我尝试了几个人在SO上发布的解决方案,但没有一个能够工作,所以我决定向你展示我的项目结构,希望有人可以提供帮助。

所以,这是我项目的gradle文件:

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

buildscript {

repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.0.1'


    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    google()
    jcenter()
}
}

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

和模块的gradle文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
defaultConfig {
    applicationId "com.example.kompjutor.myapplication"
    minSdkVersion 15
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner 
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 
'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'

}

这些是我得到的错误:

Errors

请问任何想法?

2 个答案:

答案 0 :(得分:2)

问题可能由以下原因引起

  1. Gradle尚未同步图书馆。
  2. Android Studios离线模式已激活。
  3. 有关详细信息,请参阅this

答案 1 :(得分:1)

转到文件 - >项目结构。

在依赖关系选项卡中,选择加号图标显示为绿色,然后选择库依赖关系。并通过它添加。如果仍然出现问题,请通过SDK Manager更新支持存储库

enter image description here