worker8/TourGuide

Android Studio can't find v1.0.17-SNAPSHOT ?

Opened this issue · 4 comments

Keeps giving the error saying that library/version can't be found, where 1.0.16-SNAPSHOT works fine?

for me too, even the 1.0.16 return "Could not find repository gradle"

and im sure i have all the repositories the same thing like the main page... why? =(

EDIT: you must add the repository at the gradle.build (YouAppName) not the gradle.build(app)

its working now

Whereabouts? It seems to say "error: Command Compile() not found in this version of gradle" when I try anywhere in that file?

Also, for me adding maven in allprojects worked. (In gradle.build (YouAppName)).

allprojects {
     repositories{
        jcenter()
        mavenCentral()
        maven() {
            url "https://oss.sonatype.org/content/repositories/snapshots"
        }
    }
}

1.0.16-SNAPSHOT works fine for me. Thanks