Can't Repro
Status Update
Comments
tr...@gmail.com <tr...@gmail.com> #2
+1
om...@gmail.com <om...@gmail.com> #3
+1
uc...@google.com <uc...@google.com> #4
Not reproduced, can you share a sample project to reproduce this issue.
kn...@gmail.com <kn...@gmail.com> #5
Looks like the issue doesn't exist now. It must have been a short term error.
Thank you for looking though.
Thank you for looking though.
uc...@google.com <uc...@google.com> #6
Thank you for this feedback. Your feedback helps make sure Android development tools are great! Given your issues has been resolved I am closing this issue.
vi...@gmail.com <vi...@gmail.com> #7
I observe the same behavior!
pa...@appliquette.com.au <pa...@appliquette.com.au> #8
This issue just occurred for me today, So it clearly is not resolved.
Studio Build: Android Studio 3.1.3
Gradle Version: 4.4
Android Plugin Version: 3.1.2
Studio Build: Android Studio 3.1.3
Gradle Version: 4.4
Android Plugin Version: 3.1.2
kn...@gmail.com <kn...@gmail.com> #9
Can you both make a sample app that replicates the issue?
uc...@google.com <uc...@google.com> #10
This is JCenter outage issue, for more details http://status.bintray.com/
sa...@gmail.com <sa...@gmail.com> #11
Could not download bundletool.jar (com.android.tools.build:bundletool:0.1.0-alpha01):
ki...@gmail.com <ki...@gmail.com> #12
Just had this problem today.
ma...@gmail.com <ma...@gmail.com> #13
Still happening
uc...@google.com <uc...@google.com> #14
Can you open new issue with all required details to reproduce.
hi...@gmail.com <hi...@gmail.com> #15
+1 started happening recently, on all the projects.
al...@ukics.com <al...@ukics.com> #16
+1
le...@ciandt.com <le...@ciandt.com> #17
+1
Happening here in the project too (on some machines) since yesterday!
Solution was change jcenter() location in both buildscript and allprojects scopes:
buildscript {
repositories {
jcenter()
google()
maven { url 'https://maven.fabric.io/public ' }
}
to
buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public ' }
}
and
allprojects {
repositories {
maven { url "$rootDir/maven" }
maven {
// We use a modified build of com.android.support.test:runner:1.0.1. Explanation in maven-test/README
url "$rootDir/maven-test"
}
maven {
// Local Maven repo containing AARs with JSC built for Android
url "$rootDir/../js/node_modules/jsc-android/android"
}
flatDir {
dirs 'libs'
// dirs project(':expoview').file('libs')
}
jcenter()
maven { url "https://jitpack.io " }
maven { url 'https://maven.google.com ' }
// Want this last so that we never end up with a stale cache
mavenLocal()
mavenCentral()
}
}
to
allprojects {
repositories {
maven { url "$rootDir/maven" }
maven {
// We use a modified build of com.android.support.test:runner:1.0.1. Explanation in maven-test/README
url "$rootDir/maven-test"
}
jcenter()
maven {
// Local Maven repo containing AARs with JSC built for Android
url "$rootDir/../js/node_modules/jsc-android/android"
}
flatDir {
dirs 'libs'
// dirs project(':expoview').file('libs')
}
maven { url "https://jitpack.io " }
maven { url 'https://maven.google.com ' }
// Want this last so that we never end up with a stale cache
mavenLocal()
mavenCentral()
}
}
Happening here in the project too (on some machines) since yesterday!
Solution was change jcenter() location in both buildscript and allprojects scopes:
buildscript {
repositories {
jcenter()
google()
maven { url '
}
to
buildscript {
repositories {
google()
jcenter()
maven { url '
}
and
allprojects {
repositories {
maven { url "$rootDir/maven" }
maven {
// We use a modified build of com.android.support.test:runner:1.0.1. Explanation in maven-test/README
url "$rootDir/maven-test"
}
maven {
// Local Maven repo containing AARs with JSC built for Android
url "$rootDir/../js/node_modules/jsc-android/android"
}
flatDir {
dirs 'libs'
// dirs project(':expoview').file('libs')
}
jcenter()
maven { url "
maven { url '
// Want this last so that we never end up with a stale cache
mavenLocal()
mavenCentral()
}
}
to
allprojects {
repositories {
maven { url "$rootDir/maven" }
maven {
// We use a modified build of com.android.support.test:runner:1.0.1. Explanation in maven-test/README
url "$rootDir/maven-test"
}
jcenter()
maven {
// Local Maven repo containing AARs with JSC built for Android
url "$rootDir/../js/node_modules/jsc-android/android"
}
flatDir {
dirs 'libs'
// dirs project(':expoview').file('libs')
}
maven { url "
maven { url '
// Want this last so that we never end up with a stale cache
mavenLocal()
mavenCentral()
}
}
al...@ukics.com <al...@ukics.com> #18
Temporary fix is to run cordova plugin add cordova-android-support-gradle-release --fetch against your project.
sx...@gmail.com <sx...@gmail.com> #19
Same issue happened today. Any update on that for a solid fix?
Description
Version of Gradle Plugin: 3.2.0-alpha15
Version of Gradle: Gradle 4.6
Version of Java: 1.8.0_152-release-1136-b03 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
OS: Ubuntu 18 (Linux 4.15.0-22-generic amd64)
Steps to Reproduce:
1. Have jcenter() before google() in project.gradle
repositories {
jcenter()
google()
}
2. Build - Error
3. Have google() before jcenter() in project.gradle
repositories {
google()
jcenter()
}
4. Build - Success
Regarding the error log below, the files that cannot be found by the build are reachable in my web browser.
> Could not resolve all artifacts for configuration ':classpath'.
> Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.2.0-alpha15).
Searched in the following locations:
> Could not find sdklib.jar (com.android.tools:sdklib:26.2.0-alpha15).
Searched in the following locations:
> Could not find layoutlib-api.jar (com.android.tools.layoutlib:layoutlib-api:26.2.0-alpha15).
Searched in the following locations:
> Could not find bundletool.jar (com.android.tools.build:bundletool:0.3.2).
Searched in the following locations: