Could Not Find Com.affolestad.material-dialogs
I imported Android Studio project but was stuck at this error. I even updated my SDK and gradle build Error:A problem occurred configuring project ':app'. Could not resolve all d
Solution 1:
This library is not on jcenter or maven.
You have to add the jitpack repo as described in the readme.
repositories {
...
maven { url "https://jitpack.io" }
}
Post a Comment for "Could Not Find Com.affolestad.material-dialogs"