I am getting this error just today.
Android studio is saying com.google.jimfs:jimfs:1.1.
can't be downloaded.
Here is my gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
maven { url 'https://maven.google.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
allprojects {
repositories {
google()
maven { url 'https://maven.google.com' }
}
}
ext {
compileSdkVersion = 22
buildToolsVersion = "23.0.1"
minSdkVersion = 9
targetSdkVersion = 23
}
This only occurs if I download a project from the web. If I create the project then everything works fine.
Should I download com.google.jimfs:jimfs:1.1.
myself or is anything missing in my gradle file?