Android studio 1.2.2 gradle library -


adding gradle project compile has been working me well, noticed after updating android studio 1.2.2, or maybe version before it, adding library not working anymore.

so example tried add this , did "sync now" , successful library doesn't seem recognized. when try use progresswheel in java , hit ctrl+enter doesn't find library, have idea of should 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 added before update,      //working fine, below isn't      compile 'com.pnikosis:materialish-progress:1.5'    } 

please note tried many other libraries , had 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) default. add in module's build.gradle file:

repositories {     mavencentral() } 

Comments