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

后端 未结 12 1663
青春惊慌失措
青春惊慌失措 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

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

提交回复
热议问题