We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of this code block:
allprojects { repositories { maven { url 'https://jitpack.io' } } }
Write this code block:
maven { url "https://jitpack.io" }
in settings.gradle file inside dependencyResoultionManagement -> repositories
This will solve your Failed to resolve the dependency problem.
It is requested to @ismaeldivita edit the readme.md file according to this. and in url remember to put double-inverted comma not single.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Instead of this code block:
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
Write this code block:
maven { url "https://jitpack.io" }
in settings.gradle file inside dependencyResoultionManagement -> repositories
This will solve your Failed to resolve the dependency problem.
It is requested to @ismaeldivita edit the readme.md file according to this. and in url remember to put double-inverted comma not single.
The text was updated successfully, but these errors were encountered: