Android-ImageCropper icon indicating copy to clipboard operation
Android-ImageCropper copied to clipboard

Error wiht Gradle

Open hscissors opened this issue 9 years ago • 1 comments

I'm not able to sync this library in gradle. You might have a problem with the project.

hscissors avatar Mar 02 '16 21:03 hscissors

I just have checked this problem. Can you check repositories in project gradle file? This library only uploaded jcenter. so if you didn't add jcenter() in repositories, add this code.

allprojects {
    repositories {
        mavenCentral()
        // add this
        jcenter()
    }
}

If still not working, let me know your gradle settings please.

Thanks.

crust87 avatar Mar 03 '16 01:03 crust87