Android Studio 3.0 - 无法解决本地依赖性错误

时间:2017-11-06 09:25:44

标签: android android-studio

我最近将Android Studio更新为3.0版,随后将Gradle更新为4.1版。

现在,在我尝试加载现有项目后,我收到以下错误:

  

错误:无法解析':app @ UnitTest / compileClasspath':无法解析项目:intro-slider-lib。

     

错误:无法解析':app @ UnitTest / compileClasspath':无法解析项目:intro-slider-lib。

我已尝试过在其他主题中发布的多个解决方案,但似乎都没有。这是我的 build.gradle(app)文件:

apply plugin: 'com.android.application'

allprojects{
    repositories {
        maven {
            url 'https://maven.google.com'
        }
    }
}

android {
    compileSdkVersion 25
    buildToolsVersion '26.0.2'
    defaultConfig {
        useLibrary 'org.apache.http.legacy'
        minSdkVersion 14
        targetSdkVersion 25
        versionCode 3
        versionName "1.6"
    }
    buildTypes {
        debug {
            debuggable true
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        release {}
        ApkQuipons {}
        staging {
            matchingFallbacks = ['debug', 'qa', 'release']
        }
    }
}

dependencies {

    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'com.android.support:appcompat-v7:25.1.0'
    compile 'com.android.support:cardview-v7:25.1.0'
    compile 'com.google.android.gms:play-services-gcm:10.0.1'
    compile 'com.android.support:design:25.1.0'
    compile 'com.android.volley:volley:1.0.0'
    implementation project(':intro-slider-lib')
}

编辑:此处还有我的 build.gradle(项目)代码:

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

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}
allprojects {
    repositories {
        google()
        jcenter()
    }
}

1 个答案:

答案 0 :(得分:0)

  

错误:无法解析依赖关系   ':app @ UnitTest / compileClasspath':无法解析项目   :前奏滑块-lib的

<强>不

implementation project(':intro-slider-lib')

<强>不要

 compile project(':intro-slider-lib')

然后 Clean-Rebuild-Sync

修改

如果您想使用 implementation ,请设置

classpath 'com.android.tools.build:gradle:3.0.0'

阅读difference between implementation and compile in gradle

 allprojects {
    repositories {
        jcenter()
        mavenCentral()
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
}