Android studio 1.2.2 gradle库

时间:2015-07-21 01:11:26

标签: android android-studio gradle

使用compile添加gradle项目对我来说非常有用,但是我注意到在将Android工作室更新到1.2.2之后,或者在它之前的版本之后,添加一个库已经不能用了。

因此,例如我尝试添加this并执行“立即同步”并且它已成功但是图书馆似乎无法识别。当我尝试在Java中使用ProgressWheel时,我点击了ctrl + Enter它找不到库,任何人都知道我应该怎么做?

dependencies {

    compile 'com.android.support:support-v4:21.0.0'
    compile 'com.google.android.gms:play-services:+'
    compile files('libs/universal-image-loader-1.9.3.jar')
    compile 'com.romainpiel.shimmer:library:1.4.0@aar'
    //the above libraries were added before the update, everything was 
    //working fine, the below isn't 
    compile 'com.pnikosis:materialish-progress:1.5'
   }

请注意,我尝试了很多其他库,但都有相同的结果。

1 个答案:

答案 0 :(得分:0)

项目自述文件(https://github.com/pnikosis/materialish-progress的首页)表示它位于 Maven Central 。 Android Studio默认使用 jCenter (由Bintray提供)。将其添加到模块的build.gradle文件中:

repositories {
    mavenCentral()
}