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

后端 未结 12 1643
青春惊慌失措
青春惊慌失措 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 17:05

    add below code to your build.gradle (Module) to skip error

    lintOptions {
            abortOnError false
    }
    

提交回复
热议问题