我无法在我的Android项目Android Studio 3.1.3中使用排球库

时间:2018-10-08 00:38:51

标签: android android-studio build.gradle

下午好,我的android项目遇到了一个新问题,我不知道为什么,但是我无法在我的项目中实现排球库,因为我使用的是Android Studio 3.1.3 API 26 我需要帮助。

enter image description here

1 个答案:

答案 0 :(得分:1)

将您的gradle更新为v 3.2.0

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

并确保您已添加:

repositories {
        google() // should be always the first one
        jcenter { url "http://jcenter.bintray.com/" }
         maven {
            url "https://jitpack.io"
        }
}

位于项目build.gradle中的根root -> build.gradle存储库中。

为了更好地理解:

enter image description here