简体   繁体   中英

Android studio 1.2.2 gradle library

Adding a gradle project with compile has been working for me very well, but I noticed after updating the Android studio to 1.2.2, or maybe the version just before it, that adding a library is not working anymore.

So for example I tried to add this and I did the "Sync Now" and it was successful but the library doesn't seem to be recognized. When I try to use ProgressWheel in Java and I hit ctrl+Enter it doesn't find the library, anyone have an idea of what should I do?

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'
   }

Please note that I tried many other libraries and all had the same result.

The project README (front page of https://github.com/pnikosis/materialish-progress ) says it's on Maven Central . Android Studio uses jCenter (by Bintray) by default. Add this in your module's build.gradle file:

repositories {
    mavenCentral()
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM