TourGuide icon indicating copy to clipboard operation
TourGuide copied to clipboard

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

Open conzorz opened this issue 9 years ago • 4 comments

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

conzorz avatar Jun 03 '16 22:06 conzorz

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

defaultbr avatar Jun 17 '16 14:06 defaultbr

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

conzorz avatar Jul 11 '16 18:07 conzorz

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"
        }
    }
}

mk6614 avatar Aug 18 '16 09:08 mk6614

1.0.16-SNAPSHOT works fine for me. Thanks

IniongunIsaac avatar May 14 '17 09:05 IniongunIsaac