在我将android studio更新为3.0.0
后再添加api27
我无法创建新项目
因为依赖性错误我发现我必须更新我的依赖关系第一个依赖项appcompat-v7:27.0.0
我在build.gradle
和compile "com.android.support:appcompat-v7:27.0.0"
中插入https://maven.google.com来下载依赖项但它导致另一个错误无法查找参数的方法并要求更新android支持存储库,但它也已更新
答案 0 :(得分:0)
我想提请你注意注意事项
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
您错误地打开了错误的build.gradle
文件。打开build.gradle
的{{1}}文件,将Module: app
置于compile "com.android.support:appcompat-v7:27.0.0"
块内。
立即从中删除该行。
答案 1 :(得分:0)
谢谢,我得到的代码应该在build.gradle (module:app)
但这没有工作,导致另一个错误无法解决依赖
然后我看到它使用https下载依赖项,但我只使用代理http,所以我添加https和完成的设置