Android Studio 3.1.3错误:无法解决依赖关系

时间:2018-08-06 08:54:25

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

我要在公司上开发Android。

我下载了Android Studio 3.1,并创建了一个新的空白项目,但出现错误。

Gradle下载将导致无条件错误。

我引用了很多Google内容,但无法解决。

构建gradle:

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

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.fouad.kurd"
        minSdkVersion 18
        targetSdkVersion 28
        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:28.+'
    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'
}

gradle.wrapper.properties:

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip

:( Error Screen shot

请帮助我

2 个答案:

答案 0 :(得分:0)

  • 检查您是否具有 disabled offline mode 的Android Studio。
  • 使用implementation 'com.android.support:appcompat-v7:28.0.0-beta01'代替28.+

答案 1 :(得分:0)

您将无法在目标SDK版本28中使用ConstraintLayout

所以罪魁祸首是

implementation 'com.android.support.constraint:constraint-layout:1.0.2'

因此,请删除约束布局或将目标sdk版本降低到27。