avast / android-styled-dialogs

Backport of Material dialogs with easy-to-use API based on DialogFragment
Apache License 2.0
2.15k stars 450 forks source link

Include via Gradle not working #60

Closed mea36 closed 10 years ago

mea36 commented 10 years ago

Hey, I'm trying to include your project via Gradle and I keep on getting the following error: Error:Failed to find: eu.inmite.android.lib:android-styled-dialogs:1.2.0

My gradle file looks like:

dependencies {
    ....
    compile project(':plugins:Android-PullToRefresh:library')
    compile 'com.android.support:support-v4:+'
    compile 'eu.inmite.android.lib:android-styled-dialogs:1.2.0'
}

Any suggestions on how to get this to work?

mea36 commented 10 years ago

I needed to include

repositories { 
    mavenCentral()
}