Image-Steps
Image-Steps copied to clipboard
Failed to Resolve : 1.0.5
Hey, I am getting a Failed to resolve error when trying to sync dependencies. Min SDK = 17 targetSDK = 28
have any thoughts on this?
I had the same trouble as you have.
Would you like to open "build.gradle" that is in app module and see codes in "repositories". I guess that you can't find this code.
repositories{
// something
maven {
url "https://jitpack.io"
}
}
If the guess is right, you may resolve this issue for adding this code in area that you watching now.
maven {
url "https://jitpack.io"
}
I hope this will help. Thank you!