Could not find com.android.tools.lint:lint-gradle Android Studio 3

后端 未结 12 1623
青春惊慌失措
青春惊慌失措 2020-12-02 16:12

I have updated Android Studio to 3.0 and now received a lot of issues.. now stoped on point with such issue:

Could not resolve all files for configuration \'         


        
相关标签:
12条回答
  • 2020-12-02 16:52

    If you're running lint on a project that you created using an older version of Android Studio, you may encounter this error.

    To resolve this issue, for each project that you would like to run lint on, include Google's Maven repository in the top-level build.gradle file, as shown below:

    allprojects {
        repositories {
            // The order in which you list these repositories matter.
            google()
            jcenter()
        }
    }
    
    0 讨论(0)
  • 2020-12-02 16:52

    I have changed my current gradle version(3.3.2 to 3.2.1) from the global build.gradle file.

    buildscript {
     repositories {
        google()
        jcenter()
        maven { url 'https://maven.google.com' }
     }
    
     dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
     }
    }
    
    allprojects {
     repositories {
        google()
        jcenter()
        maven { url 'https://maven.google.com' }
     }
    }
    

    then click on sync gradle button on the top right corner of the screen.

    0 讨论(0)
  • 2020-12-02 16:52

    My has this issue, solved by below lines

    buildscript {
    ext.kotlin_version = '1.3.60'
    
    repositories {
        google()
        jcenter()
    }
    
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1' //3.4.2, 3.4.1^, 2.3.3^
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
        classpath 'com.google.gms:google-services:4.3.3' 
    }
    }
    //################################################################################
    allprojects {
        repositories
                {
                    google()
                    jcenter()
                    mavenCentral()
                    maven { url "https://dl.google.com/dl/android/maven2/" }
                    maven { url "http://jcenter.bintray.com/" }
                    maven { url 'https://plugins.gradle.org/m2/'}
                    maven { url "https://maven.google.com" }
                    maven { url 'https://jitpack.io' }
                    maven { url 'https://mvnrepository.com/artifact/com.android.tools.lint/lint-gradle-api' }
    
                    flatDir {
                        dirs 'libs'
                    }
                }
    }
    //################################################################################
    task clean(type: Delete) {
        delete rootProject.buildDir
    }
    
    0 讨论(0)
  • 2020-12-02 16:52

    im my case I solved the problem by downgrading gradle version from 3.6.3:

    buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.6.3'
    
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
     }
    }
    

    to 3.4.2:

    buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.2'
    
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
    }
    
    0 讨论(0)
  • 2020-12-02 16:58

    I solved this by adding the https://mvnrepository.com/artifact/com.android.tools.lint/lint-gradle-api repo to build.gradle:

    repositories {
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        jcenter()
        maven {
            url 'https://mvnrepository.com/artifact/com.android.tools.lint/lint-gradle-api'
        }
    }
    
    0 讨论(0)
  • 2020-12-02 17:01

    Add google() to your gradle If you face this again,Do not add a linter disabler to your gradle, This is an access error issue,I faced that on react-native after using sudo command for a few command, Just reset your code access and then release again For example the mac

    sudo chmod -R 777 <project-root-folder-name>

    0 讨论(0)
提交回复
热议问题