Android studio常见错误分析解决

Android studio开发工具使用过程中常见的错误及解决方法:


问题一、
Error:(16, 0) Gradle DSL method not found: 'android()'
Possible causes:The project 'HandlerDemo' may be using a version of Gradle that does not contain the method.
<a href="open.wrapper.file">Open Gradle wrapper file</a></li><li>The build file may be missing a Gradle plugin.
<a href="apply.gradle.plugin">Apply Gradle plugin</a></li>

解决方案:
将Project最外层build.gradle中的 android{}项去掉,然后再执行build->Rebuild project。
如果还不行,可将Project中app层的android{}中的compileSdkVersion buildToolsVersion 分别修改你说编译的sdk及toolversion,然后再执行build->Rebuild project。



问题二、
Gradle error “Attribute ”xxx“ has already been defined” in Android Studio

解决方案:
移除build.gradle中的compile 'com.android.support:appcompat-v7:23.2.1'

你可能感兴趣的:(Android studio常见错误分析解决)