Android Studio can't find v1.0.17-SNAPSHOT ?
Opened this issue · 4 comments
conzorz commented
Keeps giving the error saying that library/version can't be found, where 1.0.16-SNAPSHOT works fine?
defaultbr commented
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
conzorz commented
Whereabouts? It seems to say "error: Command Compile() not found in this version of gradle" when I try anywhere in that file?
mk6614 commented
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"
}
}
}
IniongunIsaac commented
1.0.16-SNAPSHOT works fine for me. Thanks