I'm trying to add a dependency on https://github.com/DaleKocian/VolleyAndRxJava from my project, but I'm getting an error:
Error:(130, 13) Failed to resolve: com.github.DaleKocian:VolleyAndRxJava:+
<a href="openFile:/Users/michaelosofsky/Developer/android-sdk-1.2/locuslabs-android-sdk/app/build.gradle">Show in File</a><br><a href="open.dependency.in.project.structure">Show in Project Structure dialog</a>
I believe the problem is that I haven't specified the right tag, which, as specified, is required in Is it possible to declare git repository as dependency in android gradle?.
I don't know what to use a tag, because https://github.com/DaleKocian/VolleyAndRxJava doesn't seem to have any tag.
According to Gradle dependency version syntax, the syntax is specified with Ivy, but I can't tell from the Ivy documentation how I should specify there is no tag.
Here is an excerpt from my build.gradle file:
repositories {
mavenCentral()
}
dependencies {
compile 'com.github.DaleKocian:VolleyAndRxJava:+'
}
Here are other values I tried for the Tag:
'com.github.DaleKocian:VolleyAndRxJava:+'
'com.github.DaleKocian:VolleyAndRxJava:'
'com.github.DaleKocian:VolleyAndRxJava'
'com.github.DaleKocian:VolleyAndRxJava:latest'
'com.github.DaleKocian:VolleyAndRxJava:latest.integration'
'com.github.DaleKocian:VolleyAndRxJava:latest.release'
'compile 'com.github.DaleKocian:VolleyAndRxJava:latest.[any status]'
None of those worked though so how should I add https://github.com/DaleKocian/VolleyAndRxJava as a dependency in my build.gradle file?